@extends('user.includes.master') @section('title') Order Details @endsection @section('content')
Order Details
@forelse($order->order_details as $a=>$order_detail) @empty @endforelse
Id Image Name Price Quantity Color Total Price
{{ $a+1 }} {{ $order_detail->product_name }} {{ $setting->currency_symbol }}{{ number_format($order_detail->product_price,2) }} {{ $order_detail->quantity }} {{ ($order_detail->color) ? $order_detail->color : '--' }} {{ $setting->currency_symbol }}{{ number_format(($order_detail->product_price*$order_detail->quantity),2) }}
@endsection @section('script') @endsection