17. Laravel migrations have a very nice syntax for foreign keys.
- Laravel migrations have a very nice syntax for foreign keys.
I didn't know about this for so long.
Instead of: $table->unsignedBigInteger('user_id'); $table->foreign('user_id')->references('id')->on('users');
You do: $table->foreignId('user_id')->constrained();