我在 Laravel 5.5 中使用 Laratrust 包,我制作了一个页面来创建具有角色和权限的用户。这运行良好,但问题出在我的更新页面上。我无法更新权限的值,我不知道为什么。
这是我的更新页面代码:
public function update(Request $request, User $user)
{
$request_data = User::find(1);
$request->validate([
'name' => 'required|string|max:255',
'email' => 'required|string|email|max:255|unique:users',
]);
$request_data=$request->except(['permissions']);
$user->update($request_data);
$user->syncPermissions($request->permissions);
return redirect('dashboard/index');
}
这是我的编辑刀片页面:
<form class="m-form m-form--fit m-form--label-align-right m-form--group-seperator" method="post" action="{{ url('dashboard/update/users',$user->id) }}">
{{ csrf_field() }}
{{ method_field('put') }}
<div class="m-portlet__body">
<div class="form-group{{ $errors->has('name') ? ' has-error' : '' }}">
<label for="name" class="col-md-4 control-label">Name</label>
<div class="col-md-6">
<input id="name" type="text" class="form-control" name="name" value="{{ $user->name }}" required autofocus>
@if ($errors->has('name'))
<span class="help-block">
<strong>{{ $errors->first('name') }}</strong>
</span>
@endif
</div>
</div>
当年话下
holdtom