Mohd Saqueib Ansari
Mohd Saqueib Ansari
I have tried your fix but I am getting below error ``` Invalid number of options provided for the method "setOptions" in Table.php line 165 at Table->setOptions(null) in Table.php line...
Hi Jayesh, Here is how I fixed it. => I used @bart solution [from here](https://github.com/Chumper/Datatable/issues/236) and mixed it with @iftekhersunny and followed this instruction ``` 1. require "chumper/datatable": "l5-dev as...
secret
not yet, but its very easy to update not much changed from 5.4 to 5.5 https://laravel.com/docs/5.5/upgrade#upgrade-5.5.0
@diorz38 please make a pull request if you can
You need to run 'php artisan db:seed' it will setup roles and permission and give you a user to login, please try it let me know if it works
Why don't you create separate routes, don't use `Route::resource('items', 'ItemController')` just create route like this ```php Route::get('items', 'ItemController@readAllItems'); Route::get('items/{id}', 'ItemController@show'); Route::put('items/{id}', 'ItemController@update'); Route::delete('items/{id}', 'ItemController@destroy'); ``` And now you wont be...
@ebess It looks like `cross-origin` never get set on `` tag, instead its setting on the wrapper div. **Tested it by adding attribute `croppingConfigs(['cross-origin' => 'anonymous']) ->croppingConfigs(['crossOrigin' => 'anonymous']) ->croppingConfigs(['crossorigin'...
@codel Thanks for adding this feature. But I cant find any documentation to addElement. I want to add these tags `u`, `strike`, `pre`, `code` and `blockquote`. How can i do...
I think you need a middlewere to apply a setting on entire controller https://laravel.com/docs/9.x/middleware#defining-middleware