18 lines
401 B
PHP
18 lines
401 B
PHP
@extends('layout.index', [
|
|
'title' => __('dashboard.title'),
|
|
'subtitle' => __('boilerplate::users.list.title'),
|
|
'breadcrumb' => [
|
|
__('boilerplate::dashboard.title') => 'boilerplate.users.index'
|
|
]
|
|
])
|
|
|
|
@include('boilerplate::logs.style')
|
|
|
|
@section('content')
|
|
|
|
@include('Admin.Shop.Dashboard._partials.counter')
|
|
@include('Admin.Shop.Dashboard._partials.report')
|
|
|
|
@endsection
|
|
|