parfum/app/Livewire/Studio/Catalog/Bottle/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
661 B
PHP

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