2026-08-05 22:45:56 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Modules\Catalog\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Modules\Catalog\Database\Factories\DestinationFactory;
|
2026-08-09 20:59:00 +07:00
|
|
|
use Spatie\Activitylog\Models\Concerns\LogsActivity;
|
|
|
|
|
use Spatie\Activitylog\Support\LogOptions;
|
2026-08-05 22:45:56 +07:00
|
|
|
|
|
|
|
|
class Destination extends Model
|
|
|
|
|
{
|
|
|
|
|
/** @use HasFactory<DestinationFactory> */
|
2026-08-09 20:59:00 +07:00
|
|
|
use HasFactory, LogsActivity;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Full CRUD audit trail — catalog admin writes are staff-only and
|
|
|
|
|
* infrequent, so logging every attribute change is affordable
|
|
|
|
|
* (domain.md §6; T6.2).
|
|
|
|
|
*/
|
|
|
|
|
public function getActivitylogOptions(): LogOptions
|
|
|
|
|
{
|
|
|
|
|
return LogOptions::defaults()
|
|
|
|
|
->logFillable()
|
|
|
|
|
->logOnlyDirty()
|
|
|
|
|
->dontLogEmptyChanges()
|
|
|
|
|
->useLogName('catalog');
|
|
|
|
|
}
|
2026-08-05 22:45:56 +07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var list<string>
|
|
|
|
|
*/
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
'name',
|
|
|
|
|
'mm_name',
|
|
|
|
|
'region',
|
|
|
|
|
'description',
|
|
|
|
|
'mm_description',
|
|
|
|
|
'meta_keyword',
|
|
|
|
|
'meta_description',
|
|
|
|
|
'latitude',
|
|
|
|
|
'longitude',
|
|
|
|
|
'is_active',
|
|
|
|
|
'popular',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return array<string, string>
|
|
|
|
|
*/
|
|
|
|
|
protected function casts(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'is_active' => 'boolean',
|
|
|
|
|
'popular' => 'boolean',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|