- 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.
23 lines
515 B
PHP
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>
|
|
|