Laravel membuat kolom kunci asing dalam migrasi
$table->foreignId('post_id')
->constrained()
->onUpdate('cascade')
->onDelete('cascade');
Akash