7

我想覆盖 Laravel Backpack CRUD 包的 CRUD 视图,因为我想对布局做些小改动。但显然我不想更改 CRUD 包本身。有优雅的做法吗?

4

3 回答 3

11

在您正在扩展的控制器中,Backpack\CRUD\app\Http\Controllers\CrudController 您需要覆盖您想要更改的索引、创建、编辑等方法。所有方法都在-

Backpack\CRUD\app\Http\Controllers\CrudController

所有的方法都在这里。你需要在这里改变

 public function index()
{
    $this->crud->hasAccessOrFail('list');

    $this->data['crud'] = $this->crud;
    $this->data['title'] = ucfirst($this->crud->entity_name_plural);

    // get all entries if AJAX is not enabled
    if (! $this->data['crud']->ajaxTable()) {
        $this->data['entries'] = $this->data['crud']->getEntries();
    }

    // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
    // $this->crud->getListView() returns 'list' by default, or 'list_ajax' if ajax was enabled
    return view('your_view_name', $this->data);
}
于 2016-09-02T12:38:47.000 回答
7

找到了一种甚至不必覆盖 index() 方法的方法,只需在 CrudController 的设置方法中使用 $this->crud->setListView() 即可,例如:

$this->crud->setListView('backpack::crud.different_list', $this->data);

因此,它将获得“/resources/views/vendor/backpack/crud/different_list.blade.php”下的视图,而不是包中的默认视图。

除了 setListView()、setEditView()、setCreateView()、setUpdateView()....也可用。希望能帮助到你。

您可以参考https://laravel-backpack.readme.io/docs/crud-full-api了解更多详情。

// use a custom view for a CRUD operation
$this->crud->setShowView('your-view');
$this->crud->setEditView('your-view');
$this->crud->setCreateView('your-view');
$this->crud->setListView('your-view');
$this->crud->setReorderView('your-view');
$this->crud->setRevisionsView('your-view');
$this->crud->setRevisionsTimelineView('your-view');
$this->crud->setDetailsRowView('your-view');
于 2017-09-18T04:41:51.047 回答
5

在加载任何视图之前,Backpack for Laravel 会检查您的resources/views/vendor/backpack/crud文件夹以查看您是否有任何自定义视图。如果你不这样做,它只会加载包中的视图。

如果要覆盖所有CRUDS的刀片文件,只需将具有正确名称的文件放在正确的文件夹中即可。查看文件在包中的组织方式

如果您只想为一个 CRUD 覆盖刀片文件,请使用Sachin 的解决方案

于 2016-09-02T15:54:57.780 回答