Tony B

Results 1 comments of Tony B

Try to replace the function up() in the migration with this: `public function up() { DB::beginTransaction(); // Create table for storing roles Schema::create('roles', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name')->unique(); $table->string('display_name')->nullable();...