@extends('core::layouts.app') @section('title', __('Contacts')) @section('content')

@lang('Contacts')

@include('core::partials.admin-sidebar')
@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Fullname') @lang('Info') @lang('Subject') @lang('Created at') @lang('Action')
@if($item->is_readed) {{ $item->fullname }} @else {{ $item->fullname }} @endif {{ $item->phone }}
{{ $item->email }}
{{ $item->subject }}
@lang('View content...')
{{ $item->created_at }}
@csrf @method('DELETE')
@endif
{{ $data->appends( Request::all() )->links() }}
@if($data->count() == 0)

@lang('No contact Found')

@lang("You don't have any contact").

@endif
@stop @push('scripts') @endpush