1// Laravel can't determine the plural form of the word you used for your table name.
2
3// Just specify your table in the model as such:
4
5class Cotizacion extends Model{
6 public $table = "your table name";
7
1It seems Laravel is trying to use category_posts table (because of many-to-many relationship). But you don't have this table, because you've created category_post table. Change name of the table to category_posts.