Order #{{ $order->id }}
Student Name : {{ optional($order->student)->name }}
Student Phone : {{ optional($order->student)->getPhone() }}
@if ($order->order_receive == 'delivery')Address : {{ $order->address }}
Location : {{ optional($order->location)->getName() }}
@elseBranch : {{ optional($order->location)->getName() }}
@endifType : {{ $order->order_receive }}
| Book Name | Price | |
|---|---|---|
| {{ optional($order_book->book)->getName() }} | {{ $order_book->price }} | x{{ $order_book->qty }} |
| Delivery Fees : | {{ $order->shipping_fees }} | |
| Total : | {{ $order->shipping_fees + $total_price }} | |