/var/www/flurhymez/resources/views/admin/contacts
NameSizeModeActions
listing.blade.php42920644editdlrm
show.blade.php17870644editdlrm
Edit: /var/www/flurhymez/resources/views/admin/contacts/listing.blade.php (4292B)
@extends('admin.layout.app') @section('title', __('admin.contacts.page_title')) @section('js') @endsection @section('content')
@forelse ($contacts as $key => $contact) @empty @endforelse
# {{ __('admin.contacts.user_name') }} {{ __('admin.contacts.email') }} {{ __('admin.contacts.number') }} {{ __('admin.contacts.message') }} {{ __('admin.general.status') }} {{ __('admin.general.actions') }}
{{ $key + 1 }} {{ $contact->name }} {{ $contact->email }} {{ $contact->number }} {{ Str::of($contact->description)->words(10, ' ...') }} @if ($contact->status) {{ __('admin.offers.read') }} @else {{ __('admin.offers.notread') }} @endif
{{ __('admin.general.no_data')}}
@endsection