@foreach($CompanyDetails as $CompanyDetail) @endforeach

{{$CompanyDetail->title}}

{{$CompanyDetail->tagline}}

{{$CompanyDetail->address}}

{{$CompanyDetail->email}}

{{$CompanyDetail->phone}}

Customer Name Mobile Email
{{$Customer->name}} @if($Customer->mobile) {{$Customer->mobile->mobile}} @else No Mobile Registered @endif {{$Customer->email}}
@php $si=0; @endphp @foreach($Orders as $Order)
SLNO. Order No. Customer Status Duration
{{++$si}} {{$Order->id}} {{$Order->user->name}} {{$Order->status->title}} {{$Order->duration->title}}
@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