parfum/app/Livewire/Studio/Loyalty/Voucher/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
673 B
PHP

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