覆盖CRUD视图

时间:2016-09-02 10:50:47

标签: backpack-for-laravel

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

3 个答案:

答案 0 :(得分:7)

在扩展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);
}

答案 1 :(得分:3)

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

如果要覆盖所有 CRUDS 的刀片文件,只需将具有正确名称的文件放在右侧文件夹中即可。看看how the files are organized in the package

如果您只想覆盖一个CRUD 的刀片文件,请使用Sachin's solution

答案 2 :(得分:2)

找到一种甚至不必覆盖index()方法的方法, 只需在你的CrudController的setup方法中使用$ 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');