protected $table = 'bookshelves';
- public $searchFactor = 3;
+ public $searchFactor = 1.2;
protected $fillable = ['name', 'description', 'image_id'];
*/
public function visibleBooks(): BelongsToMany
{
- return $this->books()->visible();
+ return $this->books()->scopes('visible');
}
/**