parfum/app/Livewire/Studio/Master/User/Index.php
Yoga Pangestu 700aa8f260 feat(trait): membuat trait untuk toast agar reusable
-mengubah cara menulis toast diubah menjadi memanggil toast yang ada
2025-10-02 20:13:03 +07:00

35 lines
653 B
PHP

<?php
namespace App\Livewire\Studio\Master\User;
use App\Models\User;
use App\Traits\WithConfirmation;
use App\Traits\WithToast;
use Flux\Flux;
use Livewire\Attributes\Title;
use Livewire\Component;
#[Title('Pegawai')]
class Index extends Component
{
use WithConfirmation, WithToast;
public function delete(User $user)
{
$user->delete();
$this->dispatch('refreshDatatable');
$this->toast('Pegawai berhasil dihapus.');
Flux::modals()->close();
}
public function render()
{
return view('livewire.studio.master.user.index', [
'pageTitle' => 'Pegawai',
]);
}
}