2026-08-05 22:43:34 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Modules\Catalog\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
use Modules\Catalog\Database\Factories\EvCompanyFactory;
|
2026-08-09 20:59:00 +07:00
|
|
|
use Spatie\Activitylog\Models\Concerns\LogsActivity;
|
|
|
|
|
use Spatie\Activitylog\Support\LogOptions;
|
2026-08-05 22:43:34 +07:00
|
|
|
|
|
|
|
|
class EvCompany extends Model
|
|
|
|
|
{
|
|
|
|
|
/** @use HasFactory<EvCompanyFactory> */
|
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:43:34 +07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var list<string>
|
|
|
|
|
*/
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
'name',
|
|
|
|
|
'mm_name',
|
|
|
|
|
'slug',
|
|
|
|
|
'description',
|
|
|
|
|
'mm_description',
|
|
|
|
|
'contact',
|
|
|
|
|
'address',
|
|
|
|
|
'logo',
|
|
|
|
|
'is_active',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
protected static function booted(): void
|
|
|
|
|
{
|
|
|
|
|
static::creating(function (self $evCompany): void {
|
|
|
|
|
if (filled($evCompany->slug)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$slug = Str::slug($evCompany->name);
|
|
|
|
|
$uniqueSlug = $slug;
|
|
|
|
|
$suffix = 1;
|
|
|
|
|
|
|
|
|
|
while (static::where('slug', $uniqueSlug)->exists()) {
|
|
|
|
|
$uniqueSlug = "{$slug}-{$suffix}";
|
|
|
|
|
$suffix++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$evCompany->slug = $uniqueSlug;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return array<string, string>
|
|
|
|
|
*/
|
|
|
|
|
protected function casts(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'is_active' => 'boolean',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|