singleloginsystem/resources/views/pages/⚡dashboard.blade.php
kushal-saha 4a5436a3b4 chore: restructure views and add Livewire components for dashboard functionality
- remove flux dashboard
- add DTOs for the connecter services

Deps:
- spatie/laravel-data
- blade-icons (lucide-icons)
- tailwind-merge
2026-05-08 07:20:59 +00:00

21 lines
404 B
PHP

<?php
use Illuminate\Routing\Attributes\Controllers\Middleware;
use Livewire\Attributes\Layout;
use Livewire\Attributes\Title;
use Livewire\Component;
new
#[Layout('layouts.app')]
#[Title('Dashboard')]
#[Middleware('auth,verified')]
class extends Component {
};
?>
<div class="flex h-full w-full flex-1 flex-col gap-4 rounded-xl">
<x-dashboard-stats />
<livewire:connected-services />
</div>