@extends('admin.layouts.app') @section('title','My Contact') @section('content')
{{__("My Contact")}}
@include('admin.message')
{{ __("Order By") }}
{{ __("Default") }}
get('orderby') == 'newest') selected @endif>{{ __("Newest") }}
get('orderby') == 'oldest') selected @endif>{{ __("Oldest") }}
{{__('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