我正在使用 Laravel 开发一个 Web 应用程序。我正在使用 Nova 作为管理面板。我现在正在做的是使用文档中提到的策略来授权我的资源。但似乎它不起作用。这是我到目前为止所做的。我已经创建了一个这样的新星资源。
class Item extends Resource
{
/**
* The model the resource corresponds to.
*
* @var string
*/
public static $model = \App\Models\Item::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'id';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id',
];
/**
* Get the fields displayed by the resource.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function fields(Request $request)
{
return [
ID::make()->sortable(),
];
}
/**
* Get the cards available for the request.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function cards(Request $request)
{
return [];
}
/**
* Get the filters available for the resource.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function filters(Request $request)
{
return [];
}
/**
* Get the lenses available for the resource.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function lenses(Request $request)
{
return [];
}
/**
* Get the actions available for the resource.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function actions(Request $request)
{
return [];
}
}
然后我为该资源创建了一个名为 Item 的 Laravel 模型类。
然后我创建了策略。
class ItemPolicy
{
use HandlesAuthorization;
public function viewAny(User $user)
{
return true;
}
public function view(User $user, $item)
{
return true;
}
public function create(User $user)
{
return false;
}
public function update(User $user, $item)
{
return false;
}
public function delete(User $user, $item)
{
return false;
}
public function restore(User $user, $item)
{
return false;
}
public function forceDelete(User $user, $item)
{
return false;
}
}
我在 AuthServiceProvider 中注册了策略。
protected $policies = [
Item::class => ItemPolicy::class,
];
当我在 nova 管理面板中看到项目列表时,我仍然可以创建项目。怎么了?应该隐藏创建项目的选项。