@extends('back.layouts.app', ['title' => $title]) @section('content')
{{-- {!!getBC('Details',$bcArr)!!} --}}
@include('back.common_views.quicklinks')

Client Profile: {!! $client->name !!} {!! $client->last_name !!}

Update Client
Personal Information
First Name:
{{ $client->name }}
Address:
{{ $client->address ?? '-' }}

Enrolled Date:
{{ date('d M, Y', strtotime($client->dated)) }}
Client Activity History
@if ($pre) @endif @if ($next) @endif
@if(count($history) > 0) @foreach ($history as $key => $val)
@if ($val->ref == 1) @elseif($val->ref == 2) @elseif($val->ref == 3) @elseif($val->ref == 5) @else @endif
{{ format_date($val->created_at, 'date') }}
{{ format_date($val->created_at, 'time_only') }}

{{ $val->msg }}

Action by {{ $val->user->name ?? 'System' }}
@endforeach @else

No activity history found for this client.

@endif
@if(count($history) > 0) @endif
@endsection @section('beforeBodyClose') @endsection