@extends('backend.layouts.app') @section('content') @php $buttons = ' _id).'" id="users_view" class="btn btn-sm fw-bold btn-primary ms-auto m-4">Edit '; @endphp @include('backend.includes.breadcrumb_inner',['buttons_extra'=>$buttons])
@include('backend.includes.flash-message')

Logo

@if(is_file('storage/assets/media/users/users_logo/'.$$module_name_singular->avatar)) image @else
{{ucfirst($$module_name_singular->name[0])}}
@endif
{{isset($$module_name_singular->name)?$$module_name_singular->name:'N/A'}}
{{$$module_name_singular->roles->pluck('name') ? $$module_name_singular->roles->pluck('name')->first():'N/A' }}
Edit
ID
{{isset($$module_name_singular->_id)?$$module_name_singular->_id:'N/A'}}
Email
Address
{{isset($$module_name_singular->address)?$$module_name_singular->address:'N/A'}}
Date Of Birth
{{isset($$module_name_singular->date_of_birth)?$$module_name_singular->date_of_birth->format('d-m-Y'):'N/A'}}
Last Login
{{isset($$module_name_singular->last_login)?$$module_name_singular->last_login:'N/A'}}

Profile Overview

@foreach ($fields_array as $field) @if(in_array($field['name'],['url_website','url_facebook','url_twitter','url_linkedin','profile_privecy','bio'])) @php $field_name = $field['name']; @endphp @if(empty($userprofile->$field_name) || $userprofile->$field_name=='') @php continue; @endphp @endif @endif @php $field_name = $field['name']; $field_type = isset($field['type'])? $field['type'] : ''; @endphp @if ($field_name == 'date_of_birth' && $userprofile->$field_name != '') @elseif ($field_type == 'date' && $userprofile->$field_name != '') @elseif ($field_type == 'datetime' && $userprofile->$field_name != '') @elseif ($field_type == 'url') @else @endif @endforeach @if($user->providers && !$user->providers->isEmpty()) @endif
{{ label_case($field_name) }} @if(auth()->user()->id == $userprofile->user_id) {{ $userprofile->$field_name->isoFormat('LL') }} @else {{ $userprofile->$field_name->format('jS \\of F') }} @endif {{ $userprofile->$field_name->isoFormat('LL') }} {{ $userprofile->$field_name->isoFormat('llll') }} @if(isset($userprofile->$field_name)) {{ $userprofile->$field_name }} @endif {{ isset($userprofile->$field_name)?$userprofile->$field_name:'N/A' }}
{{ label_case('social') }}
    @foreach ($user->providers as $provider)
  • {{ label_case($provider->provider) }}
  • @endforeach
{{ __('Status') }} {!!isset($$module_name_singular->status) && ($$module_name_singular->status==1)? 'Active' :' In Active' !!}
{{ __('Confirmed') }} {!!isset($$module_name_singular->confirmed) && ($$module_name_singular->confirmed==1)? 'Confirmed' :' Not Confirmed' !!}
{{ __('Roles') }} @if($$module_name_singular->roles->count() > 0)
    @foreach ($$module_name_singular->roles->pluck('name') as $role)
  • {{ ucwords($role) }}
  • @endforeach
@endif
{{ __('Permissions') }} @if($$module_name_singular->permissions->count() > 0)
    @foreach ($$module_name_singular->permissions as $permission)
  • {{ $permission['name'] }}
  • @endforeach
@endif
{{ label_case('created_at') }} {{ isset($userprofile->created_at)?$userprofile->created_at->isoFormat('llll'):'N/A' }}
({{ isset($userprofile->created_at)?$userprofile->created_at->diffForHumans():'N/A' }})
{{ label_case('updated_at') }} {{ isset($userprofile->updated_at)? $userprofile->updated_at->isoFormat('llll'):'N/A' }}
({{ isset($userprofile->updated_at)?$userprofile->updated_at->diffForHumans():'N/A' }})

Two Factor Authentication

Two Factor authentication adds an extra layer of security to your account. To log in, in addition you'll need to provide a 6 digit code
@if($enable_button) @else
generate a backup codeto sign in to your account.
@endif

Email Notifications

Choose what messages you’d like to receive for each of your accounts.

Login Sessions

@foreach($totalActiveUsers as $activeuser) @endforeach
Location User Agent IP Address Last Activity Expired At Actions
{{ isset($activeuser['ip_address'])?getCountryByIP($activeuser['ip_address']):'N/A'}} {{ isset($activeuser['user_agent'])?$activeuser['user_agent']:''}} {{ isset($activeuser['ip_address'])?$activeuser['ip_address']:''}} {{ $activeuser['last_activity']?$activeuser['last_activity']:''}} {{ $activeuser['expires_at']?$activeuser['expires_at']:''}} @php if(isset($activeuser['user_id']) && !empty($activeuser['user_id'])){ if(\Request::session()->getId()==$activeuser['session_id']){ echo 'Current Session'; }else{ echo 'Sign Out'; } }else{ echo 'Expired'; } @endphp

Logs

500 ERR
POST /v1/invoice/in_5315_4014/invalid 10 Nov 2022, 10:30 am
200 OK
POST /v1/invoices/in_7445_4506/payment 25 Jul 2022, 11:30 am
200 OK
POST /v1/invoices/in_4996_5786/payment 25 Oct 2022, 6:05 pm
200 OK
POST /v1/invoices/in_3841_7630/payment 21 Feb 2022, 6:05 pm
200 OK
POST /v1/invoices/in_3822_2935/payment 10 Mar 2022, 8:43 pm

Events

Invoice #SEP-45656status has changed from Pendingto In Progress 25 Oct 2022, 8:43 pm
Max Smithhas made payment to #SDK-45670 24 Jun 2022, 9:23 pm
Emma Smithhas made payment to #XRS-45670 20 Jun 2022, 11:30 am
Invoice #KIO-45656status has changed from In Transitto Approved 22 Sep 2022, 11:30 am
Max Smithhas made payment to #SDK-45670 19 Aug 2022, 5:30 pm
Invoice #DER-45645status has changed from In Progressto In Transit 24 Jun 2022, 6:05 pm
Invoice #LOP-45640has been Declined 10 Nov 2022, 8:43 pm
Invoice #DER-45645status has changed from In Progressto In Transit 25 Jul 2022, 11:05 am
Invoice #LOP-45640has been Declined 24 Jun 2022, 10:10 pm
Sean Beanhas made payment to #XRS-45670 24 Jun 2022, 5:20 pm
Updated: {{ (isset($$module_name_singular->updated_at))?$$module_name_singular->updated_at->diffForHumans():'N/A'}}, Created at: {{isset($$module_name_singular->created_at)?$$module_name_singular->created_at->isoFormat('LLLL'):'N/A'}}
@endsection @push ('after-scripts') @endpush