- Added `mary.php` configuration file for customizable component and route prefixes. - Upgraded `livewire/livewire` to v4.3 and added `robsontenorio/mary` v2.8 for maryUI support. - Updated `ConnectedApps` component to fetch data dynamically via `ConnectedAppService`. - Replaced static services with computed properties and streamlined data mappings in templates. - Enhanced frontend styling with `daisyUI` and TailwindCSS v4.3 integration. - Improved user feedback in `ConnectedAppForm` with success/error toasts.
22 lines
540 B
PHP
22 lines
540 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>
|
|
<x-mary-toast/>
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|