here's my code:
Project::find($project)->users()->attach($user)// $project = '1', $user = '2'
and the error:
SQLSTATE[HY000]: General error: 1364 Field 'user_id' doesn't have a default value (SQL: insert into `project_user` (`project_id`) values (2))
and if you need migration
Schema::create('project_user', function(Blueprint $table)
{
$table->increments('id');
$table->bigInteger('project_id')->unsigned();
$table->bigInteger('user_id')->unsigned();
What could be the problem?