Fix on invoices, add delivery reference, wip on dashboard concurrency requests designed on template
This commit is contained in:
@@ -1,17 +1,38 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('dashboard.title'),
|
||||
'subtitle' => __('boilerplate::users.list.title'),
|
||||
'breadcrumb' => [
|
||||
__('boilerplate::dashboard.title') => 'boilerplate.users.index'
|
||||
]
|
||||
'title' => __('Core.dashboard'),
|
||||
])
|
||||
|
||||
@include('boilerplate::logs.style')
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('Admin.Shop.Dashboard._partials.counter')
|
||||
@include('Admin.Shop.Dashboard._partials.report')
|
||||
<div class="btn-group mb-3" role="group" aria-label="Basic example">
|
||||
<button type="button" class="btn btn-sm btn-secondary text-nowrap" data-id="day">jour</button>
|
||||
<button type="button" class="btn btn-sm btn-secondary text-nowrap" data-id="month">mois</button>
|
||||
<button type="button" class="btn btn-sm btn-secondary text-nowrap" data-id="year">année</button>
|
||||
<button type="button" class="btn btn-sm btn-secondary text-nowrap" data-id="yesterday">jour-1</button>
|
||||
<button type="button" class="btn btn-sm btn-secondary text-nowrap" data-id="lastmonth">mois-1</button>
|
||||
<button type="button" class="btn btn-sm btn-secondary text-nowrap" data-id="lastyear">année-1</button>
|
||||
@include('components.form.daterangepicker', [
|
||||
'name' => 'period',
|
||||
])
|
||||
</div>
|
||||
|
||||
<div class="row dashboard">
|
||||
<div class="col-lg-3 col-sm-6 col-xs-12">
|
||||
@include('Admin.Shop.Dashboard._partials.counter')
|
||||
</div>
|
||||
<div class="col-lg-9">
|
||||
@include('Admin.Shop.Dashboard._partials.report')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@include('load.form.daterangepicker')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
initDaterangepicker();
|
||||
</script>
|
||||
@endpush
|
||||
Reference in New Issue
Block a user