@extends('layouts.adminapp') @section('content') {{-- Details List View --}}
#: {{$Order->id}}
Customer: {{$Order->user->name}}
Contact:@if($Order->user->mobile) {{$Order->user->mobile->mobile}} @endif
@php $Slno=0; @endphp @foreach($Order->order_products as $order_product) @endforeach
Slno Product Services Quantity
{{++$Slno}} {{$order_product->product->title}} @foreach($order_product->order_product_services as $order_service) {{$order_service->product_service->servicetype->title}} @endforeach {{$order_product->quantity}}
@endsection