65 lines
1.7 KiB
PHP
65 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Containers\Post\Models;
|
|
|
|
use App\Enums\PostStatus;
|
|
use App\Models\Category;
|
|
use App\Models\MainSlider;
|
|
use App\Models\Seo;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\MorphOne;
|
|
use Illuminate\Database\Eloquent\Relations\MorphToMany;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Spatie\Tags\HasTags;
|
|
|
|
class Post extends Model
|
|
{
|
|
use HasFactory, HasTags;
|
|
|
|
protected $guarded = false;
|
|
|
|
protected static function booted()
|
|
{
|
|
static::saved(function ($post) {
|
|
Cache::forget('post_' . $post->id);
|
|
Cache::forget('posts_' . $post->category_id . '_*'); // Очистка кеша для всех постов в категории
|
|
});
|
|
|
|
static::deleted(function ($post) {
|
|
Cache::forget('post_' . $post->id);
|
|
Cache::forget('posts_' . $post->category_id . '_*'); // Очистка кеша для всех постов в категории
|
|
});
|
|
}
|
|
|
|
public function category() : BelongsTo
|
|
{
|
|
return $this->belongsTo(Category::class);
|
|
}
|
|
|
|
public function author() : BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
|
|
public function seo()
|
|
{
|
|
return $this->morphOne(Seo::class, 'seoable');
|
|
}
|
|
|
|
public function mainSlider()
|
|
{
|
|
return $this->morphOne(MainSlider::class, 'slidable');
|
|
}
|
|
|
|
protected $casts = [
|
|
'content' => 'array',
|
|
'authors' => 'array',
|
|
'status' => PostStatus::class,
|
|
'images' => 'array'
|
|
];
|
|
}
|