@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@if(Session::has('error'))
{{ Session::get('error') }}
@endif
| Registration Date |
Name |
Email |
Phone No |
Speak Time |
Country |
Message |
Status |
|
@foreach($consultation as $con)
@php
$consuDate = date("d-m-Y H:i:s",strtotime($con->speak_time));
@endphp
| {{$con->created_at->todatestring()}} |
{{ $con->c_name }} |
{{ $con->c_email }} |
{{ $con->c_phone }} |
{{ $consuDate }} |
{{ $con->country }} |
{{ Str::limit($con->c_message,60, $end='...') }}
@if(strlen($con->c_message)>60)
@endif
|
|
|
@endforeach