@php
$active = $active ?? null;
$menuItems = [
[
'key' => 'dashboard',
'icon' => '',
'label' => __('menu.dashboard')
],
[
'key' => 'menu',
'icon' => '',
'label' => __('menu.menu')
],
[
'key' => 'shop.index',
'icon' => '',
'label' => __('menu.shop')
],
];
if (\Illuminate\Support\Facades\Auth::check() && \Illuminate\Support\Facades\Auth::user()->is_admin) {
$menuItems[] = [
'key' => 'admin.dashboard',
'icon' => '',
'label' => app()->getLocale() == 'fa' ? 'پنل ادمین' : 'Admin Panel'
];
}
@endphp