@section('style') @if (Amcoders\Plugin\Plugin::is_active('WebNotification')) @endif @endsection @extends('layouts.backend.app') @section('content') @php $currency=\App\Options::where('key','currency_name')->select('value')->first(); @endphp
{{ __('Order') }} | {{ __('Status') }} | {{ __('Payment Status') }} |
---|---|---|
{{ __('Order No') }} #{{ $row->id }} | @if($row->status == 1) {{ __('Completed') }} @elseif($row->status == 2) {{ __('Pending') }} @elseif($row->status == 3) {{ __('Resturend Order Accepted') }} @elseif($row->status == 0) {{ __('Cancelled') }} @endif | @if($row->payment_status == 1) {{ __('Completed') }} @elseif($row->payment_status == 0) {{ __('Pending') }} @endif |
{{ $json->message }}