dashboard language
This commit is contained in:
parent
e2dd6c6086
commit
cbed7f0c34
|
|
@ -84,12 +84,12 @@
|
|||
|
||||
<div class="card mb-4">
|
||||
<div class="card-header d-flex justify-content-between align-items-center">
|
||||
<div>订单统计</div>
|
||||
<div>{{ __('admin/dashboard.order_report') }}</div>
|
||||
<div class="orders-right">
|
||||
<div class="btn-group" role="group" aria-label="Basic outlined example">
|
||||
<button type="button" class="btn btn-sm btn-outline-info btn-info text-white" data-type="latest_month">一个月</button>
|
||||
<button type="button" class="btn btn-sm btn-outline-info" data-type="latest_week">一周</button>
|
||||
<button type="button" class="btn btn-sm btn-outline-info" data-type="latest_year">一年</button>
|
||||
<button type="button" class="btn btn-sm btn-outline-info btn-info text-white" data-type="latest_month">{{ __('admin/dashboard.latest_month') }}</button>
|
||||
<button type="button" class="btn btn-sm btn-outline-info" data-type="latest_week">{{ __('admin/dashboard.latest_week') }}</button>
|
||||
<button type="button" class="btn btn-sm btn-outline-info" data-type="latest_year">{{ __('admin/dashboard.latest_year') }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -16,4 +16,9 @@ return [
|
|||
'order_amount' => 'Order Amount',
|
||||
'yesterday' => 'Yesterday',
|
||||
'day_before' => 'Last day',
|
||||
|
||||
'order_report' => 'Order Report',
|
||||
'latest_month' => 'Latest Month',
|
||||
'latest_week' => 'Latest Week',
|
||||
'latest_year' => 'Latest Year',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -16,4 +16,9 @@ return [
|
|||
'order_amount' => '销售额',
|
||||
'yesterday' => '昨日',
|
||||
'day_before' => '较前一日',
|
||||
|
||||
'order_report' => '订单统计',
|
||||
'latest_month' => '一个月',
|
||||
'latest_week' => '一周',
|
||||
'latest_year' => '一年',
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in New Issue