Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

JournalEntryObserver.php 706B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace App\Observers;
  3. use App\Models\Accounting\JournalEntry;
  4. class JournalEntryObserver
  5. {
  6. /**
  7. * Handle the JournalEntry "created" event.
  8. */
  9. public function created(JournalEntry $journalEntry): void
  10. {
  11. //
  12. }
  13. /**
  14. * Handle the JournalEntry "updated" event.
  15. */
  16. public function updated(JournalEntry $journalEntry): void
  17. {
  18. //
  19. }
  20. /**
  21. * Handle the JournalEntry "deleting" event.
  22. */
  23. public function deleting(JournalEntry $journalEntry): void
  24. {
  25. //
  26. }
  27. /**
  28. * Handle the JournalEntry "deleted" event.
  29. */
  30. public function deleted(JournalEntry $journalEntry): void
  31. {
  32. //
  33. }
  34. }