Sqlstate [42S02]: Tabela podstawowa lub widok nie znalezion
seem i got the solution without change table name
if u have bookmarks table name
public function products() {
return $this->belongsToMany(Product::class, 'bookmarks');
}
Elegant Echidna