領収証発行サービス
選択できるのは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. }