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

23 行
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. }