Image Description
{{$user['f_name'].' '.$user['l_name']}}
{{ $user['phone'] }}
@foreach($convs as $con) @if($con->sender_id == $receiver->id)
{{$con->message}}
@if($con->file!=null) @foreach (json_decode($con->file) as $img)
@endforeach @endif
{{date('d M Y',strtotime($con->created_at))}} {{date(config('timeformat'),strtotime($con->created_at))}}
@else
{{$con->message}}
@if($con->file!=null) @foreach (json_decode($con->file) as $img)
@endforeach @endif
{{date('d M Y',strtotime($con->created_at))}} {{date(config('timeformat'),strtotime($con->created_at))}} @if ($con->is_seen == 1) @else @endif
@endif @endforeach
@csrf