12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
-
- namespace App\Observers;
-
- use App\Models\Accounting\JournalEntry;
-
- class JournalEntryObserver
- {
- /**
- * Handle the JournalEntry "created" event.
- */
- public function created(JournalEntry $journalEntry): void
- {
- //
- }
-
- /**
- * Handle the JournalEntry "updated" event.
- */
- public function updated(JournalEntry $journalEntry): void
- {
- //
- }
-
- /**
- * Handle the JournalEntry "deleting" event.
- */
- public function deleting(JournalEntry $journalEntry): void
- {
- //
- }
-
- /**
- * Handle the JournalEntry "deleted" event.
- */
- public function deleted(JournalEntry $journalEntry): void
- {
- //
- }
- }
|