@extends('layouts.user') @section('head') @endsection @section('content')

{{ $page_title }}

@include('admin.message')
@if(!empty($rows) and $rows->total() > 0)
@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{__("Type")}} {{__('Service Info')}} {{__('Customer Info')}} {{__('Status')}} {{__('Created At')}} {{__("Action")}}
@if($service = $row->service) @endif {{$row->object_model}} @if($service = $row->service) {{$service->title ?? ''}} @else {{__("[Deleted]")}} @endif
{{__("Name:")}} {{$row->name}}
{{__("Email:")}} {{$row->email}}
{{__("Phone:")}} {{$row->phone}}
{{__("Notes:")}} {{$row->note}}
{{$row->statusName}} {{display_datetime($row->updated_at)}} @if(!empty( $has_permission_enquiry_update )) {{__("Action")}} @endif
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@else {{__("No data")}} @endif
@endsection @section('footer') @endsection