<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class Bookmark
*
* @property int id
* @property int user_id
* @property int topic_id
* @property int count_posts
*/
class Bookmark extends BaseModel
{
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
/**
* Возвращает топик
*
* @return BelongsTo
*/
public function topic(): BelongsTo
{
return $this->belongsTo(Topic::class, 'topic_id')->withDefault();
}
}