skip to Main Content

Laravel 8 dd() limitations

how can I increase the laravel 8 dd() limitations? I have lots of nested relationship and I cant view most of them due to many data. For example this #relations: array:4 [▼ "activecourses" => IlluminateDatabaseEloquentCollection {#1346 ▼ #items: array:3 [▼…

VIEW QUESTION

How to clear the cache on laravel 9 server

Does any one know how to clear the cache on laravel -9 on server I tried it and it took me to a 404 error page Route::get('/clear', function() { Artisan::call('cache:clear'); Artisan::call('config:clear'); Artisan::call('config:cache'); Artisan::call('view:clear'); return "Cleared!"; }); and Route::get('clear',[SiteController::class,'clear']); public function…

VIEW QUESTION

Bug on checkboxes in laravel livewire

I'm having a doble problems with my checkboxes on livewire component. I'm trying to save in my form's table two checkboxes. This checkboxes take their value in an other table named "Garde_type". Checkbox "home" save in my form's table the…

VIEW QUESTION
Back To Top
Search