@extends('layouts.app') @section('header-title', __('Order Details')) @section('content')
| {{ __('Product') }} | {{ __('Quantity') }} | {{ __('Size') }} | {{ __('Color') }} | {{ __('Price') }} | {{ __('Total') }} |
|---|---|---|---|---|---|
|
|
{{ $product->quantity ?? 0 }} | {{ $product->size ?? '-' }} | {{ $product->color ?? '-' }} | {{ showCurrency($product->price) }} | {{ showCurrency($product->quantity * $product->price) }} |