@php
$menus = [
[
'url' => '/leaves',
'name' => 'Leave Management',
'description' => 'Manage and track leave requests efficiently.',
'icon' => 'mdi mdi-calendar-alert',
'bg' => 'bg-gradient-primary'
],
[
'url' => '/workers',
'name' => 'Employee Directory',
'description' => 'View and manage employee records and details.',
'icon' => 'mdi mdi-book-open-page-variant-outline',
'bg' => 'bg-gradient-success'
],
[
'url' => '/salaries',
'name' => 'Salary & Payroll',
'description' => 'Generate, view, and handle employee salaries.',
'icon' => 'mdi mdi-cash-multiple',
'bg' => 'bg-gradient-warning'
],
[
'url' => '/attendance',
'name' => 'Attendance',
'description' => 'View and manage attendance logs.',
'icon' => 'mdi mdi-calendar-range',
'bg' => 'bg-gradient-info' // You can pick a bg class you prefer
]
];
@endphp
@foreach($menus as $menu)
{{ $menu['name'] }}
{{ $menu['description'] }}
Browse
@endforeach