singleloginsystem/resources/views/pages/⚡dashboard.blade.php
= 092ee0083e feature: add Livewire configuration and extend ConnectedApp management with delete, create, and enhanced UI integration
- Introduced `livewire.php` for customizable Livewire configuration.
- Enhanced ConnectedApp management by adding delete functionality and dynamic navigation handling (`goBack()`).
- Updated forms (`create`, `edit`) with `maryUI` components (`mary-form`, `mary-button`, `mary-input`, `mary-choices`).
- Consolidated provider imports and refactored UI for reusability and improved styling.
- Improved exception handling and validation rules in `ConnectedAppService` and Livewire components.
2026-05-15 05:45:31 +00:00

23 lines
515 B
PHP

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