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