64 lines
1.5 KiB
PHP
64 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class ForumThread extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'forum_threads';
|
|
|
|
protected $fillable = [
|
|
'id','category_id','user_id','title','slug','content','views','is_locked','is_pinned','visibility','last_post_at'
|
|
];
|
|
|
|
public $incrementing = true;
|
|
|
|
protected $casts = [
|
|
'is_locked' => 'boolean',
|
|
'is_pinned' => 'boolean',
|
|
'last_post_at' => 'datetime',
|
|
];
|
|
|
|
public function category(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ForumCategory::class, 'category_id');
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
|
|
public function posts(): HasMany
|
|
{
|
|
return $this->hasMany(ForumPost::class, 'thread_id');
|
|
}
|
|
|
|
public function scopeVisible(Builder $query): Builder
|
|
{
|
|
return $query->where('visibility', 'public');
|
|
}
|
|
|
|
public function scopePinned(Builder $query): Builder
|
|
{
|
|
return $query->where('is_pinned', true);
|
|
}
|
|
|
|
public function scopeRecent(Builder $query): Builder
|
|
{
|
|
return $query->orderByDesc('last_post_at')->orderByDesc('id');
|
|
}
|
|
|
|
public function scopeInCategory(Builder $query, int $categoryId): Builder
|
|
{
|
|
return $query->where('category_id', $categoryId);
|
|
}
|
|
}
|