My controller is as below:
public function update(PermissionFormRequest $request,$id)
{
$permissionUpdated = $this->permission->update($request,$id);
if($permissionUpdated){
//return $permissionUpdated;
return 'updated';
}
return response()->json(['message' => 'Can not update ticket']);
}
Form request code is:
public function rules()
{
return [
'name' =>'required|unique:permissions,name,'.$this->id,
];
}
When trying to update with same id, an error is thrown as:
{"name":["The name has already been taken."]}
To get the id in the
Request
you can use theroute()
method. Keep in mind that use parameter name inroute('id')
which is used in yourroutes.php
file!Hope this helps!