What should I name my pivot table which contains a two word table? What should I name my pivot table which contains a two word table? laravel laravel

What should I name my pivot table which contains a two word table?


You can name as you want, and specify the table name as the 2nd param on the relationship call in your models:

return $this->belongsToMany('Model', 'table_name');

Official Documentation