@include('layout/backend/_header') @include('layout/backend/_navbar')
@include('layout/backend/_sidebar')

@if ( isset($_GET['s_t']) ) @endif

{{ csrf_field() }}


@if(Session::has('success'))
× {!! session('success') !!}
@endif
{{ csrf_field() }} @php $ctr = 0 @endphp @if( isset($contacts) && count($contacts) > 0 ) @foreach($contacts as $k => $v) @endforeach @endif
S.no. Name Email Subject message Actions
 {{ ++$ctr }} {{ $v['name'] }} {{ $v['email'] }} {{ $v['subject']}} {{ $v['message']}}
@if( count($contacts)==0 )
No records found
@endif
@if(count($contacts) > 0) {{ $contacts->links() }} @endif
@include('layout/backend/_footer')