You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
353 B
13 lines
353 B
<?php
|
|
|
|
/**
|
|
* Configurations for Backpack's ReorderOperation.
|
|
*
|
|
* @see https://backpackforlaravel.com/docs/crud-operation-reorder
|
|
*/
|
|
|
|
return [
|
|
// Define the size/looks of the content div for all CRUDs
|
|
// To override per Controller use $this->crud->setReorderContentClass('class-string')
|
|
'contentClass' => 'col-md-8 col-md-offset-2',
|
|
];
|
|
|