parfum/app/Livewire/Studio/Master/Outlet/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
662 B
PHP

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