@lang('print.Description'): {{ app()->getLocale() == 'en' ? $dish->description_en : $dish->description_ar }}
@lang('print.Price'): {{ $dish->price }} {{ $dish->currency_symbol }}
@lang('print.BranchesOrdered'): {{ $dish->branch_names }}
| @lang('print.BranchName') | @lang('print.Address') | @lang('print.Quantity') | @lang('print.TotalPrice') | @lang('print.PriceBeforeTax') | @lang('print.PriceAfterTax') | @lang('print.TaxValue') | @lang('print.Notes') |
|---|---|---|---|---|---|---|---|
| {{ app()->getLocale() == 'en' ? $branch->name_en : $branch->name_ar }} | {{ app()->getLocale() == 'en' ? $branch->address_en : $branch->address_ar }} | {{ $branch->quantity }} | {{ $branch->total_price }} {{ $dish->currency_symbol }} | {{ $branch->price_befor_tax }} {{ $dish->currency_symbol }} | {{ $branch->price_after_tax }} {{ $dish->currency_symbol }} | {{ $branch->tax_value }} {{ $dish->currency_symbol }} | {{ $branch->note }} |