@extends('web.include.master') @section('content')
@if (\Session::has('success'))
× {!! \Session::get('success') !!}
@endif @if ($errors->any()) @foreach ($errors->all() as $error)
{{$error}}
@endforeach @endif

Order Listing

@if(!empty($result)) @php $i=0; @endphp @foreach ($result as $key) @php $today = Carbon\Carbon::now()->format('Y-m-d'); @endphp {{-- --}} @endforeach
@lang('arsh.ord_txt1') @lang('arsh.ord_txt2') @lang('arsh.ord_txt3') @lang('arsh.ord_txt4') @lang('arsh.ord_txt5') @lang('arsh.ord_txt6') @lang('arsh.ord_txt7') @lang('arsh.ord_txt8') @lang('arsh.ord_txt9') @lang('arsh.ord_txt10')
{{ ++$i }}#{{ $key->invoice_no }} {{$key->title_type}}, {{ ucfirst($key->fname.' '. $key->lname) }} {{ $key->payment_method }} @if(isset($key->paid_date) && $key->paid_date <= $today) @lang('arsh.ord_txt11') @else @lang('arsh.ord_txt12') @endif @if($key->order_status == '1') Active @elseif($key->order_status == '0') Decline @else Pending @endif @if($key->total_price){{ config('app.symbol')}} {{ $key->total_price }}@endif @if($key->product_type=='Kaufen') @lang('arsh.ord_txt14') @else {{ $key->product_type }} @endif @if($key->shipping_status) {{ $key->shipping_status }} @else @lang('arsh.ord_txt13') @endif {{ date('m/d/Y', strtotime($key->created_at)) }}
@else @endif
@endsection