@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

@lang('arsh.ord_limit_txt1')

@if(!empty($result)) @php $i=0; @endphp @foreach ($result as $key) @php $today = Carbon\Carbon::now()->format('Y-m-d'); $checkPro = App\Models\Product::where('id', $key->pro_id)->where('status', '1')->first(); $customer = App\Models\Customer::where('id', $key->user_id)->first(); @endphp @endforeach
@lang('arsh.ord_limit_txt2') @lang('arsh.ord_limit_txt3') @lang('arsh.ord_limit_txt4') @lang('arsh.ord_limit_txt5') @lang('arsh.ord_limit_txt6') @lang('arsh.ord_limit_txt7') @lang('arsh.ord_limit_txt8') @lang('arsh.ord_limit_txt9') @lang('arsh.ord_limit_txt10') @lang('arsh.ord_limit_txt11')
{{ ++$i }} {{ $customer->first_name }} {{ $customer->last_name }} {{ $checkPro->title }} {{ config('app.symbol') }}{{$key->price}} {{ $key->pro_type }} {{ $key->quantity }} @if($key->validity_period == 'same_day' ) One Day @elseif($key->validity_period == '7_day') One Week @elseif($key->validity_period == '1_month') 1 Month @endif @if($key->status == 0) Inaktiv @else Aktiv @endif {{ date('m/d/Y', strtotime($key->created_at)) }} @if($key->order_status == 1)Stornieren@else @endif
@else @endif
@endsection