覆盖 CRUD 视图

Override CRUD views

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

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

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

如果你想为所有 CRUDS覆盖一个blade文件,你可以只放置一个文件名称在正确的文件夹中。看看how the files are organized in the package.

如果您只想为一个 CRUD 覆盖 blade 文件,请使用 Sachin's solution.

找到了一种甚至不必重写 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');