*/
$this->crud->setModel($this->_modelNamespace);
$this->_postSetModel();
- if($this->_bulk) {
+ if ($this->_bulk) {
$this->crud->enableBulkActions();
+ $this->crud->allowAccess('show');
+ if ($this->_clonable) {
+ $this->crud->addButton('bottom', 'bulk_clone', 'view', 'crud::buttons.bulk_clone', 'beginning');
+ }
+ $this->crud->addBulkDeleteButton();
}
$this->crud->setRoute(config('backpack.base.route_prefix') . '/' . $this->_routeURL);
$this->crud->setEntityNameStrings($this->_singular, $this->_plural);