App/Http/Middleware/VerifyCsrfToken.php
$table->foreignId('checklist_id')
->constrained()
->onDelete('cascade');
$table->unsignedBigInteger('checklist_id');
$table->foreign('checklist_id')
->references('id')->on('checklists')
->onDelete('cascade');