gpt4 book ai didi

php - 使用 hasMany 时 Laravel Nova 404

转载 作者:行者123 更新时间:2023-12-05 08:31:54 25 4
gpt4 key购买 nike

在我的 Laravel Nova 项目中,我有一个 Page 和一个 PageTranslation(模型和资源)。将 hasMany 添加到我的资源字段时,在访问页面的详细信息时,我收到 404 错误。这是我的代码

这是我的页面资源

<?php

namespace App\Pages\Resources;

use Illuminate\Http\Request;
use Laravel\Nova\Resource;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Fields\HasMany;

class Page extends Resource
{
/**
* The model the resource corresponds to.
*
* @var string
*/
public static $model = 'App\Pages\Models\Page';

/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'working_title';

/**
* @var string
*/
public static $group = 'Pages';

/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id', 'working_title'
];

/**
* Eager load translations
*/
public static $with = ['translations'];

/**
* Get the fields displayed by the resource.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function fields(Request $request)
{
return [
ID::make()->sortable(),

Text::make('Title', 'working_title')
->sortable()
->rules('required', 'max:256'),

HasMany::make('Translations', 'translations', \App\Pages\Resources\PageTranslation::class)

];
}

}

这是我的页面翻译资源

<?php

namespace Codedor\Pages\Resources;

use Illuminate\Http\Request;
use Laravel\Nova\Resource;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Text;

class PageTranslation extends Resource
{
/**
* The model the resource corresponds to.
*
* @var string
*/
public static $model = 'Codedor\Pages\Models\PageTranslation';

/**
* Hide resource from Nova's standard menu.
* @var bool
*/
public static $displayInNavigation = false;

/**
* Get the fields displayed by the resource.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function fields(Request $request)
{
return [
ID::make()->sortable(),

Text::make('Locale')
->sortable()
->rules('required', 'max:256')
];
}
}

最佳答案

我有点晚了,但是如果有人在使用 Nova::resources 而不是 中的 resources 方法中的资源路径时遇到这个问题NovaServiceProvider,确保将相关资源添加到列表中。

如果您希望从侧边栏导航中隐藏资源,只需在资源文件中使用 public static $displayInNavigation = false;

关于php - 使用 hasMany 时 Laravel Nova 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54761360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com