{{-- Customer Search List --}}
Customer Name Mobile Email
{{$User->name}} @if($User->mobile) {{$User->mobile->mobile}} @else No Mobile Registered @endif {{$User->email}}
@php $si=0; @endphp @foreach($Orders as $Order)
SLNO. Order No. Status Duration Order Date
{{++$si}} {{$Order->id}} {{$Order->status->title}} {{$Order->duration->title}} {{date_format(date_create($Order->created_at),'d-m-Y')}}
@foreach($Order->order_products as $order_product) @endforeach
Product Service Quantity
{{$order_product->product->title}} @foreach($order_product->order_product_services as $order_service) {{$order_service->product_service->servicetype->title}} @endforeach {{$order_product->quantity}}
@endforeach