skip to Main Content

Laravel Backpack Filters doesnt do anything after click

Im new to Laravel Packpack. My issue is I have filters using this code $this->crud->addFilter( ['name' => 'created_at', 'type' => 'date_range', 'label' => 'Bid Date'], false, function ($value) { $dates = json_decode($value); $this->crud->addClause('where', 'created_at', '>=', $dates->from); $this->crud->addClause('where', 'created_at', '<=', $dates->to…

VIEW QUESTION

Php versions – When using upload type everything goes well, when using upload_multiple getting error

when using this: CRUD::field('photos')->type('upload')->withFiles(['path' => 'productphotos']);. it upload the images to the /productphotos directory in the public storage. When trying to change that to CRUD::field('photos')->type('upload_multiple')->withFiles(['path' => 'productphotos']); on submit I am getting this error: Too few arguments to function BackpackCRUDappLibraryUploadersUploader::getPreviousFiles(),…

VIEW QUESTION
Back To Top
Search