- Added Role and User DTOs for dynamic role handling. - Implemented table and badge components for displaying role data. - Registered a Blade directive for scoped slots in `ScopeServiceProvider`. - Updated dashboard views to include role management section.
21 lines
520 B
PHP
21 lines
520 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="dark">
|
|
<head>
|
|
@include('partials.head')
|
|
</head>
|
|
<body class="min-h-screen bg-gray-50 antialiased">
|
|
<div class="flex h-screen">
|
|
<livewire:dashboard-sidebar :active="$activeNav ?? 'dashboard'"/>
|
|
|
|
<div class="flex flex-col flex-1 min-w-0 overflow-hidden">
|
|
<x-dashbord-topbar/>
|
|
|
|
<main class="flex-1 overflow-y-auto p-4">
|
|
{{ $slot }}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|