@extends('admin.layout.app', ['title' => 'Dashboard']) @section('preload-section') {{-- You must include files that need to be preloaded: Syncronous scripts and Stylesheets mostly --}} @endsection @section('content')
to
{{--
--}}
@if (request('startDate') || request('endDate') || request('quickDateFilter') || request('statusFilter'))
Active Filters: @if (request('startDate') && request('endDate')) Date: {{ request('startDate') }} to {{ request('endDate') }} @endif @if (request('quickDateFilter')) | Period: {{ ucfirst(str_replace(['7days', '30days'], [' 7 Days', ' 30 Days'], request('quickDateFilter'))) }} @endif @if (request('statusFilter')) | Status: {{ ucfirst(request('statusFilter')) }} @endif Clear All
@endif
{{ __('keywords.Orders') }}
{{ __('keywords.Latest order history') }}
@if (count($ongoin) > 0) @php $i=1; @endphp @foreach ($ongoin as $ongoing) @php $i++; @endphp @endforeach @else @endif
# {{ __('keywords.Cart_id') }} User Details {{ __('keywords.Status') }} Amount Details
{{ $i }}
{{ $ongoing->cart_id }}
{{ $ongoing->delivery_date }}
{{ $ongoing->name }}
{{ $ongoing->user_phone }}
@if ($ongoing->order_status == 'Pending') @endif @if ($ongoing->order_status == 'Confirmed') @endif @if ($ongoing->order_status == 'Completed') @endif @if ($ongoing->order_status == 'Cancelled') @endif @if ($ongoing->order_status == 'Out_For_Delivery') @endif {{ $ongoing->order_status }} {{ $ongoing->total_price }}
{{ __('keywords.No data found') }}
@foreach ($ongoin as $ords)
@endforeach @endsection @section('postload-section') {{-- You must include files that have no direct efect on the load of the page and can be loaded meanwhile other tasks can be performed by user --}} @endsection