Laravel tworzy kolumnę klucza obcego w migracji
$table->foreignId('post_id')
->constrained()
->onUpdate('cascade')
->onDelete('cascade');
Akash