@extends('main') @section('styles') @endsection @section('content') @php $price = intval(str_replace(',', '', $order->price)); @endphp
{!! __('Item') !!} | {!! __('Price') !!} | {!! __('Total') !!} |
{!! $item->name !!} @if ($item->options->has('unit')) {{ $item->options->unit }} {{ ($item->options->has('type') && $item->options->type) ? ' - '.$item->options->type : '' }} @else {{ $item->model->unit->title }} {{ ($item->options->has('type') && $item->options->type) ? ' - '.$item->options->type : '' }} @endif |
{!! $item->price !!}×{!! $item->qty !!} | {{ $item->subtotal }} {{ __('EGP') }} |
{!! __('Subtotal') !!} | {{ @$price }} {!! __('EGP') !!} |
{{ __('Delivery') }} | {{ @$order->delivery }} {!! __('EGP') !!} |
{{ __('Order Total') }} | {{ @$price+@$order->delivery }} {!! __('EGP') !!} |