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

Details of Mr /Mr's {!! $client->name !!} Update Client

First Name {{ $client->name }}
Last Name {{ $client->last_name }}
Email {{ $client->email }}
Phone Number {{ $client->phone }}
Address {{ $client->address }}
State {{ $client->state->state_name }}
City {{ $client->clientCity->city_name }}
Zip Code {{ $client->zip }}
Comments {{ $client->comments }}
Conditions @php $client_conditions = json_decode($client->conditions); @endphp @if ($conditions !== null && $client_conditions !== null) @foreach ($conditions as $condition) @if (in_array($condition->id, $client_condtions)) {{ $condition->heading }}, @endif @endforeach @endif
Date of Birth 01-Jan-1970
Enrolled Date 01-Jan-1970
{{-- HERE --}}
@if ($pre) @endif

History

@if ($next) @endif
@foreach ($history as $key => $val)
@if ($val->ref == 1) @elseif($val->ref == 2) @elseif($val->ref == 3) @elseif($val->ref == 4) @elseif($val->ref == 5) @else @endif
{{ format_date($val->created_at, 'date') }}{{ format_date($val->created_at, 'time_only') }}
{{ $val->msg }} by
{{ $val->user->name }}
@endforeach
{!! $history->links() !!}
{{-- HEREE --}}
@endsection @section('beforeBodyClose') @endsection