parfum/app/Livewire/Studio/Finance/Expense.php
Yoga Pangestu e905f98b4f feat(role & permission): membuat trait untuk otorisasi
-menambahkan otorisasi semua komponen. tabel, view dan lainnya
2025-10-02 21:42:08 +07:00

86 lines
1.9 KiB
PHP

<?php
namespace App\Livewire\Studio\Finance;
use App\Livewire\Forms\Studio\Finance\ExpenseForm;
use App\Models\Expense as ExpenseModel;
use App\Traits\WithAuthorization;
use App\Traits\WithCloseModal;
use App\Traits\WithConfirmation;
use App\Traits\WithToast;
use App\Traits\WithUpdatedData;
use Flux\Flux;
use Livewire\Attributes\On;
use Livewire\Attributes\Title;
use Livewire\Component;
#[Title('Pengeluaran')]
class Expense extends Component
{
use WithAuthorization, WithCloseModal, WithConfirmation, WithToast, WithUpdatedData;
public ExpenseForm $form;
public string $method = 'create';
public string $modalTitle = '';
#[On('modal:open')]
public function openModal(string $method, string $modalTitle, ?string $id = null)
{
$this->resetValidation();
$this->resetErrorBag();
$this->method = $method;
$this->modalTitle = $modalTitle;
if ($id) {
$this->form->setExpense(ExpenseModel::findOrFail($id));
}
}
public function create()
{
$this->canOrAbort('create expense');
$this->form->store();
$this->dispatch('refreshDatatable');
$this->toast('Pengeluaran berhasil ditambahkan.');
Flux::modals()->close();
}
public function update()
{
$this->canOrAbort('update expense');
$this->form->update();
$this->dispatch('refreshDatatable');
$this->toast('Pengeluaran berhasil diperbarui.');
Flux::modals()->close();
}
public function delete(ExpenseModel $expense)
{
$expense->delete();
$this->dispatch('refreshDatatable');
$this->toast('Pengeluaran berhasil dihapus.');
Flux::modals()->close();
}
public function render()
{
return view('livewire.studio.finance.expenses', [
'pageTitle' => 'Pengeluaran',
]);
}
}