@extends('theme::layouts.app') @push('css') @endpush @section('content') @php $currency=\App\Options::where('key','currency_icon')->select('value')->first(); @endphp
{{ __('Item Name') }} | {{ __('Quantity') }} | {{ __('Total Amount') }} |
---|---|---|
{{ $itemrow->products->title ?? '' }} | {{ $itemrow->qty ?? '' }} | {{ strtoupper($currency->value) }}{{ $itemrow->total*$itemrow->qty }} |
Subtotal: {{ strtoupper($currency->value) }}{{ $subtotal }}
@if($info->coupon_id != null)Discount Code: {{ $info->coupon->title ?? '' }}
Discount: {{ strtoupper($currency->value) }}{{ $info->discount }}
@endifTotal: {{ strtoupper($currency->value) }}{{ $info->total+$info->shipping }}
{{ __('Order Created') }}
{{ __('Order Accepted') }}
@elseif($row->status == 2){{ __('Order Created') }}
@elseif($row->status == 1){{ __('Order Completed') }}
@elseif($row->status == 0){{ __('Order Cancelled') }}
@endif{{ __('Order Pending') }}
@elseif($row->status == 1){{ __('Order Accepted') }}
@elseif($row->status == 0){{ __('Order Cancelled') }}
@endif{{ __('Name') }} : {{ $info->riderinfo->name }}
{{ __('Phone1') }} : {{ $data->phone1 }}
{{ __('Phone2') }} : {{ $data->phone2 }}
@endif{{ __('Restaurant Name') }} : {{ $info->vendorinfo->name }}
{{ __('Phone1') }} : {{ $json->phone1 }}
{{ __('Phone2') }} : {{ $json->phone2 }}
{{ __('Address') }} : {{ $json->full_address }}
@endif