- Add TableHeader DTO - Refactor Toggle component to have checked prop, as wire:model does not work - add null collasing for php 8.5 strict compatibility in scope directive - refactor card component so that actions stay on the right - make button component scaled small on active and change color on hover
23 lines
502 B
PHP
23 lines
502 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:dashboard.connected-services />
|
|
<livewire:dashboard.roles.manager />
|
|
<livewire:dashboard.roles.hr-permission />
|
|
</div>
|
|
|