@extends('design_1.panel.layouts.panel') @push('styles_top') @endpush @section('content') {{-- Top Stats --}} @include('design_1.panel.store.sales.top_stats') @if(!empty($orders) and !$orders->isEmpty())

{{ trans('update.orders_history') }}

{{-- Filters --}} @include('design_1.panel.store.sales.filters') {{-- List Table --}}
@foreach($orders as $order) @include('design_1.panel.store.sales.table_items', ['order' => $order]) @endforeach
{{ trans('update.customer') }} {{ trans('update.order_id') }} {{ trans('public.price') }} {{ trans('public.discount') }} {{ trans('financial.total_amount') }} {{ trans('financial.income') }} {{ trans('public.type') }} {{ trans('public.status') }} {{ trans('public.date') }} {{ trans('update.controls') }}
{{-- Pagination --}}
@else @include('design_1.panel.includes.no-result',[ 'file_name' => 'store_sales.svg', 'title' => trans('update.product_sales_no_result'), 'hint' => nl2br(trans('update.product_sales_no_result_hint')), ]) @endif @endsection @push('scripts_bottom') @endpush