領収証発行サービス
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 lines
450B

  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Concerns\HasUuids;
  4. use Illuminate\Database\Eloquent\SoftDeletes;
  5. abstract class AppModel extends BaseModel
  6. {
  7. use SoftDeletes, HasUuids;
  8. public function getHistory(): ?HistoryModel
  9. {
  10. $historyName = static::class . 'History';
  11. return new $historyName;
  12. }
  13. public function getChangeLogMessage($before, $after): ?string
  14. {
  15. return null;
  16. }
  17. }