search fix

This commit is contained in:
merdan 2020-04-07 17:57:59 +05:00
parent eb43b2d5d4
commit 6a6422c130
2 changed files with 3 additions and 3 deletions

View File

@ -77,12 +77,12 @@ class AccountCrudController extends CrudController
[
'name' => 'is_active',
'label' => 'Is Active',
'type' => 'check'
'type' => 'checkbox'
],
[
'name' => 'is_banned',
'label' => 'Is Banned',
'type' => 'check'
'type' => 'checkbox'
]
]);
$this->crud->setRequiredFields(StoreRequest::class, 'create');

View File

@ -55,7 +55,7 @@ class SubscriberCrudController extends CrudController
] ,
[
'name' => 'active',
'type' => 'check',
'type' => 'checkbox',
'label' => 'Active'
]
]);