|Bookmark newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Bookmark newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Bookmark query() * @method static \Illuminate\Database\Eloquent\Builder|Bookmark whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Bookmark whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|Bookmark whereProfileId($value) * @method static \Illuminate\Database\Eloquent\Builder|Bookmark whereStatusId($value) * @method static \Illuminate\Database\Eloquent\Builder|Bookmark whereUpdatedAt($value) * * @mixin \Eloquent */ class Bookmark extends Model { protected $guarded = []; public function status() { return $this->belongsTo(Status::class); } public function profile() { return $this->belongsTo(Profile::class); } }