您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

JournalEntryObserver.php 869B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 "deleting" event.
  15. */
  16. public function deleting(JournalEntry $journalEntry): void
  17. {
  18. //
  19. }
  20. /**
  21. * Handle the JournalEntry "deleted" event.
  22. */
  23. public function deleted(JournalEntry $journalEntry): void
  24. {
  25. //
  26. }
  27. /**
  28. * Handle the JournalEntry "restored" event.
  29. */
  30. public function restored(JournalEntry $journalEntry): void
  31. {
  32. //
  33. }
  34. /**
  35. * Handle the JournalEntry "force deleted" event.
  36. */
  37. public function forceDeleted(JournalEntry $journalEntry): void
  38. {
  39. //
  40. }
  41. }