如何通过使用此迁移而不使用表角色来检查用户是否为管理员。
public function up()
{
Schema::create('user', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->boolean('is_admin')->default(0);
$table->rememberToken();
$table->timestamps();
});```
答案 0 :(得分:0)
如果您使用的是Blade,则可以尝试以下操作:
@if (Auth::check() && Auth::user()->is_admin)
YOUR BUTTON CODE, IF USER IS ADMIN
@endif