@section('style') @if (Amcoders\Plugin\Plugin::is_active('WebNotification')) @endif @endsection @extends('layouts.backend.app') @section('content')
{{ __('Order') }} | {{ __('Amount') }} | {{ __('Status') }} | {{ __('Payment Status') }} |
---|---|---|---|
{{ __('Order No') }} #{{ $row->id }}
@if($row->order_type==1)
{{ __('Home Delivery') }}
@else
{{ __('Pickup') }}
@endif
{{ __('View Order') }}
{{ __('Download Invoice') }}
|
{{ number_format($row->total,2) }} | @if($row->status == 1) {{ __('Completed') }} @elseif($row->status == 2) {{ __('Pending') }} @elseif($row->status == 3) {{ __('Accepted') }} @elseif($row->status == 0) {{ __('Cancelled') }} @endif | @if($row->payment_status == 1) {{ __('Completed') }} @elseif($row->payment_status == 0) {{ __('Pending') }} @endif |
{{ $json->message }}