@extends('admin.layouts.app') @section('title','My Contact') @section('content')

{{__("My Contact")}}

@include('admin.message')

{{__('Found :total items',['total'=>$rows->total()])}}

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Name')}} {{ __('Email')}} {{ __('Message')}} {{ __('Time Sent')}}
{{ $row->name }} {{ $row->email }} {{ $row->message }} {{ display_date($row->created_at) }}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection