@if ($inboxes->count() > 0) @foreach ($inboxes as $inbox)
{{ $inbox->name }} ({{ $inbox->email }})
{!! !$inbox->read ? 'New' : '' !!}{{ $inbox->created_at->format('d-m-Y') }}

{!! $inbox->about_yourself !== 'NULL' ? Str::limit($inbox->about_yourself, 200) : 'Not Fount' !!}

@endforeach @else

DATA NOT FOUND

@endif
{{ $inboxes->links() }}