Tạo Khóa ngoại trong Laravel 9
Tạo Khóa ngoại trong Laravel 9 trong migration
$table->unsignedBigInteger('users_id');
            $table->foreign('users_id')->references('id')->on('users');
 
                                    
                Tạo Khóa ngoại trong Laravel 9 trong migration
$table->unsignedBigInteger('users_id');
            $table->foreign('users_id')->references('id')->on('users');