crudbooster icon indicating copy to clipboard operation
crudbooster copied to clipboard

Laravel CRUD Generator, Make an Advanced Web Application Quickly

Results 103 crudbooster issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/20856352/131618515-bb10978f-1952-4e46-83a9-df39a6dced60.png) laravel version 8.40 php version >7.3

Hello! I'm having a little issue, if you could help I'll be grateful. Issue: After my local env was broken I've had to redo all the installation and execute all...

saya bikin hook query agar user lain tidak bisa melihat isi data input seperti ini ``` public function hook_query_index(&$query) { //Your code here if(!CRUDBooster::isSuperadmin()) { $query->where('user_input',CRUDBooster::myName()); } } ``` nah...

Crudbooster unable to install on laravel 8 because PHP version 7.4 required ![crudbooster error](https://user-images.githubusercontent.com/42392216/125698166-878d82d7-6d28-4ca1-9d68-57881092a014.PNG)

`Migrated: 2016_11_17_102740_create_cms_statistic_components [ReflectionException] Class CBSeeder does not exist root@anderson:/var/www/# grep -r -e "CBSeeder" vendor/crocodicstudio/crudbooster/src/ vendor/crocodicstudio/crudbooster/src/commands/CrudboosterUpdateCommand.php: $this->callSilent('db:seed',['--class' => 'CBSeeder']); vendor/crocodicstudio/crudbooster/src/commands/CrudboosterInstallationCommand.php: $this->call('db:seed',['--class' => 'CBSeeder']); vendor/crocodicstudio/crudbooster/src/database/seeds/CBSeeder.php:class CBSeeder extends Seeder ` [2017-04-23 12:05:24] local.ERROR:...

Does anyone know what the following problem is due to? I have a non-mandatory field in my form when it is empty in a row, it sends me the following...

Hello I have added fields below with readonly attribute. $this->form[] = ['label'=>'Grade','name'=>'grade_id','type'=>'select','validation'=>'required|min:1|max:255','width'=>'col-sm-3','datatable'=>'qc_grades,name','readonly'=>true]; $this->form[] =['label'=>'Pharmacopia','name'=>'pharmacopia_id','type'=>'select','validation'=>'required|min:1|max:255','width'=>'col-sm-3','datatable'=>'qc_pharmacopia,name','readonly'=>true]; $this->form[] = ['label'=>'Name','name'=>'name','type'=>'text','validation'=>'required|string|min:3|max:70','width'=>'col-sm-10','readonly'=>true]; Fields are set to readonly but still user can select from the list...

I want to do a multi-role multi-user app, so the super user can create something for a user and then the user can work with that information, but i´d like...

hello, how to use parent_select for select2? i used this but didnt work $this->form[] = ['label'=>'Kelas','type'=>'select2','name'=>'kelas_id','width'=>'col-sm-10','datatable'=>'tb_kelas,nama','parent_select'=>'tingkat_id']; thank you

FEATURE REQUEST