@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
{{__("Tipo")}} {{__('Información de servicio')}} {{__('Customer Info')}} {{__('Estado')}} {{__('Creado en')}} {{__("Acciones")}}
@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 )) {{__("Accion")}} @endif
{{__("Sin datos")}}
{{$rows->appends(request()->query())->links()}}
@else {{__("Sin datos")}} @endif
@endsection @section('footer') @endsection