Миграции - rodinandrey/dev_notes GitHub Wiki

Отношения

$table->unsignedBigInteger('account_id')->nullable();
$table->foreign('account_id')->references('id')->on('fin_accounts')->cascadeOnDelete();

Полиморфные

$table->nullableMorphs('medical');