Chave estrangeira Nulível em Laravel
$table
->foreignId('other_table_id')
->nullable() // here
->references('id')
->on('other_table');
shafeeque
$table
->foreignId('other_table_id')
->nullable() // here
->references('id')
->on('other_table');