| Client Name |
{{ (isset($order->clientUser)) ? $order->clientUser->fname." ".$order->clientUser->lname : '----'}} |
| Merchant Name |
{{ (isset($order->merchantUser)) ? $order->merchantUser->fname." ".$order->merchantUser->lname : '----'}} |
| Order Status |
{{ (isset($order->order_status)) ? Config('constants.order_status.'.$order->order_status) : '----'}} |
| Tax Amount |
{{ (isset($order->tax_amount)) ? $order->tax_amount : '----'}} |
| Total Amount |
{{ (isset($order->total_amount)) ? $order->total_amount : '----'}} |
| Contact# |
{{ (isset($order->contact)) ? $order->contact : '----'}} |
| Reviews |
{{ (isset($order->avgFeedback)) ? round($order->avgFeedback->average_rating ,2) : '----'}} |
| Products Name |
Product Quantity |
Unit Price |
Total Price |
{{ $orderProducts->links() }}