parfum/app/Providers/ViewServiceProvider.php
Yoga Pangestu e905f98b4f feat(role & permission): membuat trait untuk otorisasi
-menambahkan otorisasi semua komponen. tabel, view dan lainnya
2025-10-02 21:42:08 +07:00

129 lines
5.0 KiB
PHP

<?php
namespace App\Providers;
use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider;
class ViewServiceProvider extends ServiceProvider
{
public function boot(): void
{
View::composer('*', function ($view) {
$sidebar = [
[
'heading' => 'Dasbor',
'items' => [
[
'label' => 'Ringkasan',
'icon' => 'squares-plus',
'route' => 'studio.dashboard.overview',
'match' => 'studio.dashboard.overview',
'can' => 'view overview',
],
],
],
[
'heading' => 'Master',
'items' => [
[
'label' => 'Outlet',
'icon' => 'home-modern',
'route' => 'studio.master.outlet.index',
'match' => 'studio.master.outlet.*',
'can' => 'view outlet',
],
[
'label' => 'Pegawai',
'icon' => 'users',
'route' => 'studio.master.user.index',
'match' => 'studio.master.user.*',
'can' => 'view user',
],
],
],
[
'heading' => 'Loyalty',
'items' => [
[
'label' => 'Tier',
'icon' => 'star',
'route' => 'studio.loyalty.tier.index',
'match' => 'studio.loyalty.tier.*',
'can' => 'view tier',
],
[
'label' => 'Voucher',
'icon' => 'ticket',
'route' => 'studio.loyalty.voucher.index',
'match' => 'studio.loyalty.voucher.*',
'can' => 'view voucher',
],
[
'label' => 'Customer',
'icon' => 'user-plus',
'route' => 'studio.loyalty.customer.index',
'match' => 'studio.loyalty.customer.*',
'can' => 'view customer',
],
],
],
[
'heading' => 'Katalog',
'items' => [
[
'label' => 'Kategori',
'icon' => 'list-bullet',
'route' => 'studio.catalog.category.index',
'match' => 'studio.catalog.category.*',
'can' => 'view category',
],
[
'label' => 'Merek',
'icon' => 'tag',
'route' => 'studio.catalog.brand.index',
'match' => 'studio.catalog.brand.*',
'can' => 'view brand',
],
[
'label' => 'Parfum',
'icon' => 'flower-2',
'route' => 'studio.catalog.perfume.index',
'match' => 'studio.catalog.perfume.*',
'can' => 'view perfume',
],
[
'label' => 'Produk',
'icon' => 'boxes',
'route' => 'studio.catalog.product.index',
'match' => 'studio.catalog.product.*',
'can' => 'view product',
],
[
'label' => 'Botol',
'icon' => 'beaker',
'route' => 'studio.catalog.bottle.index',
'match' => 'studio.catalog.bottle.*',
'can' => 'view bottle',
],
],
],
[
'heading' => 'Keuangan',
'items' => [
[
'label' => 'Pengeluaran',
'icon' => 'banknote-arrow-down',
'route' => 'studio.finance.expense.index',
'match' => 'studio.finance.expense.*',
'can' => 'view expense',
],
],
],
];
$view->with('sidebar', $sidebar);
});
}
}