【実現したいこと】
Laravelの自作システムで
権限付加しているテーブルカラムへ、フォームから数字を登録したい
閲覧ありがとうございます。
https://helog.jp/laravel/laravel-gate-role/
上記サイトのコードを参考に
マイグレーションファイルを書いて
usersテーブルを作成した後 AuthServiceProvider.phpに3ユーザの権限を設定して
usersテーブルにRoleカラムをマイグレして追加しました。
そして登録フォームから3ユーザを登録しようとしているのですが
Roleカラムにデフォルトで設定している数字(1)しか登録できず
それ以外の権限の数字(50,100)をデータベースに登録できません。
有識者の方いらっしゃいましたら打開策を教えて頂けますと幸いです。
該当のソースコード
CreateUsersTable
php
1<?php 2 3use Illuminate\Database\Migrations\Migration; 4use Illuminate\Database\Schema\Blueprint; 5use Illuminate\Support\Facades\Schema; 6 7class CreateUsersTable extends Migration 8{ 9 /** 10 * Run the migrations. 11 * 12 * @return void 13 */ 14 public function up() 15 { 16 Schema::create('users', function (Blueprint $table) { 17 $table->increments('id'); 18 $table->string('name',30)->default(null); 19 $table->string('email',30)->default(null); 20 $table->string('password',100)->default(null); 21 $table->datetime('updated_at')->default(null); 22 $table->datetime('created_at')->default(null); 23 24 }); 25 } 26 27 /** 28 * Reverse the migrations. 29 * 30 * @return void 31 */ 32 public function down() 33 { 34 Schema::dropIfExists('users'); 35 } 36}
add_column_to_users_table.php
php
1<?php 2 3use Illuminate\Database\Migrations\Migration; 4use Illuminate\Database\Schema\Blueprint; 5use Illuminate\Support\Facades\Schema; 6 7class AddColumnToUsersTable extends Migration 8{ 9 /** 10 * Run the migrations. 11 * 12 * @return void 13 */ 14 public function up() 15 { 16 Schema::table('users', function (Blueprint $table) { 17 $table->integer('role')->default(1); 18 }); 19 } 20 21 /** 22 * Reverse the migrations. 23 * 24 * @return void 25 */ 26 public function down() 27 { 28 Schema::table('users', function (Blueprint $table) { 29 $table->dropColumn('role'); 30 }); 31 } 32} 33
AuthServiceProvider.php
php
1<?php 2 3namespace App\Providers; 4 5use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; 6use Illuminate\Support\Facades\Gate; 7 8class AuthServiceProvider extends ServiceProvider 9{ 10 /** 11 * The policy mappings for the application. 12 * 13 * @var array 14 */ 15 protected $policies = [ 16 // 'App\Model' => 'App\Policies\ModelPolicy', 17 ]; 18 19 /** 20 * Register any authentication / authorization services. 21 * 22 * @return void 23 */ 24 public function boot() 25 { 26 $this->registerPolicies(); 27 28 Gate::define('在庫発注社員',function ($user) 29 { 30 return ($user->role == 1); 31 }); 32 33 Gate::define('在庫発注管理者',function ($user) 34 { 35 return ($user->role == 50); 36 }); 37 38 Gate::define('在庫受注社',function ($user) 39 { 40 return ($user->role == 100); 41 }); 42 }![イメージ説明](f85f8e3a310326a0b3519279ab6c49f9.png) 43}
試したこと
一応、phpmyadominから手入力でroleカラムへ権限を設定している数字をいれれば、
システムとして権限設定をしているページ表示や動作はしています。
只、フォームからデフォルト値しか入らないので、
この点をどうにかしたいです。
補足情報(FW/ツールのバージョンなど)
laravelのヴァージョンは6.20.32です。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。