@extends('backend.layouts.master') @section('body')
@component('components.beardcrumb') {{-- /*Page Title Goese Here in this slot variable*/ --}} @slot('title') @lang('user.properties_title') @endslot @endcomponent @php Use App\Traits\Date; $result = App\Traits\Date::explodeDateTime(' ',$data['user']->created_at); @endphp
{{$data['user']->name}} ( {{$data['user']->name_bn}} )
@lang('common.created_at') : {{ App\Traits\Date::DbToOriginal('-',$result['date'])}}
@lang('common.time'): {{Date::twelveHrTime($result['time'])}}
@lang('common.create_by') : {{$data['user']->creator->name}}
@include('components.history')

@lang('user.password_change_history')

@if($data['pass_change_history']) @foreach ($data['pass_change_history'] as $ph) @endforeach @endif
@lang('common.date_time')
{{Date::DbToOriginal('-',$ph->date)}} , {{Date::twelveHrTime($ph->time)}}
@lang('common.date_time')

@lang('user.this_user')

@if($data['activity']) @foreach ($data['activity'] as $ac) @endforeach @endif
@lang('common.date_time') @lang('common.description')
@if(date('Y-m-d') == $ac->date) @lang('common.today') @else {{Date::DbToOriginal('-',$ac->date)}} @endif , {{Date::twelveHrTime($ac->time)}} @if(config('app.locale') == 'en') {{$ac->description_en}} @else {{$ac->description_bn}} @endif
@lang('common.date_time') @lang('common.description')
@push('footer_script') {{-- --}} @endpush @endsection