61 lines
1.3 KiB
PHP
61 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\AnnouncementCategory;
|
|
use Database\Factories\AnnouncementFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
|
use Spatie\Activitylog\LogOptions;
|
|
use Spatie\Activitylog\Traits\LogsActivity;
|
|
|
|
class Announcement extends Model
|
|
{
|
|
/** @use HasFactory<AnnouncementFactory> */
|
|
use Concerns\HasTurkishSlug, HasFactory, LogsActivity;
|
|
|
|
/**
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
'slug',
|
|
'title',
|
|
'category',
|
|
'excerpt',
|
|
'content',
|
|
'image',
|
|
'is_featured',
|
|
'meta_title',
|
|
'meta_description',
|
|
'published_at',
|
|
];
|
|
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'category' => AnnouncementCategory::class,
|
|
'is_featured' => 'boolean',
|
|
'published_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return MorphMany<Comment, $this>
|
|
*/
|
|
public function comments(): MorphMany
|
|
{
|
|
return $this->morphMany(Comment::class, 'commentable');
|
|
}
|
|
|
|
public function getActivitylogOptions(): LogOptions
|
|
{
|
|
return LogOptions::defaults()
|
|
->logFillable()
|
|
->logOnlyDirty();
|
|
}
|
|
}
|