Posts by Junio Araujo • 91 points
8 posts
-
-1
votes1
answer39
viewsQ: Create foreach with another foreach result
I have a Course and this course has 1 or several Modules, and each Module has 1 or several disciplines. In my controller I did so: $_modSelecionados =…
-
0
votes1
answer818
viewsQ: Get ID of the NAME parameter passed on the route with Laravel
I have a route that has parameters: Route::get('/cursos/{area?}/{categoria?}', 'SiteController@cursosFiltro')->name('cursos'); In the URL to passing the Slug of these past terms: {{…
laravelasked Junio Araujo 91 -
0
votes1
answer137
viewsQ: Problem with Route and IF in Laravel 5.8
I have a Route that passes 2 parameters, and can be optional. In the view, If you click on Link 1 (you pass the 2 id’s) I want you to check certain options. If you click on Link 2 (you will pass…
-
2
votes1
answer1766
viewsQ: Optional parameters on the Laravel Route
I’m passing parameters on a Route using Laravel 5.8 like this: Route::get('/cursos/{id_categoria_curso}/{id_atuacao_area}', 'SiteController@cursosFiltro')->name('cursos'); I want to make the…
laravelasked Junio Araujo 91 -
2
votes2
answers595
viewsQ: Select2 does not work in adminLte + Laravel 5.8
I added a Select2 on the page, but it does not load at all. Someone has already gone through this? I implemented it like this: Page: cadastrar.blade.php <div class="box-body"> <div…
-
0
votes1
answer230
viewsQ: Filter results using 3 tables in Laravel 5.8?
Create in controller a filter that takes data from 3 different tables. Below I put the relationship and an example of what needs to happen. I am not able to create in controller the filter that…
-
1
votes0
answers94
viewsQ: Multi select no adminLte Laravel 5.8
I need to create a multi select on the page and am using the AdminLte, the situation is as follows: A course can have several disciplines (the bank is ready with the right relationships) <select…
-
1
votes1
answer68
viewsQ: HTML in DB with Laravel 5.8
I have several fields on a page that use ckeditor: <label for="PublicoAlvo">Público Alvo</label> <textarea name="publico_alvo" id="PublicoAlvo" rows="10" cols="80"> Coloque aqui o…