@extends ('admin.layouts.app') @section ('content')

{{__('All Enquiries')}}

@include('admin.message')
@if(!empty($enquiry_update))
@csrf
@endif

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

{{__('Enquiries')}}
@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{__('Service')}} {{__('Customer')}} {{__('Status')}} {{__('Created At')}}
#{{$row->id}} @if($service = $row->service) {{$service->title ?? ''}} @if($service->author)
{{__('by')}} {{ $service->author->getDisplayName() .' (#'.$service->author->id.')' }} @endif @else {{__("[Deleted]")}} @endif
  • {{__("Name:")}} {{$row->name}}
  • {{__("Email:")}} {{$row->email}}
  • {{__("Phone:")}} {{$row->phone}}
  • {{__("Notes:")}} {{$row->note}}
{{$row->statusName}} {{display_datetime($row->updated_at)}}
{{__("No data")}}
{{$rows->links()}}
@endsection