- remove flux dashboard - add DTOs for the connecter services Deps: - spatie/laravel-data - blade-icons (lucide-icons) - tailwind-merge
19 lines
490 B
PHP
19 lines
490 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-full">
|
|
<livewire:dashboard-sidebar :active="$activeNav ?? 'dashboard'"/>
|
|
<div class="flex flex-col flex-1 min-w-0 overflow-hidden">
|
|
<x-dashbord-topbar/>
|
|
<main class="">
|
|
{{ $slot }}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|