Posts by Luciano Charles de Souza • 46 points
2 posts
-
1
votes1
answer129
viewsA: How to insert data into a table that has multiple Foreign key and relates to other 4 tables using Laravel with Eloquent?
public Function store(Request $request) { $request->validate($this->model->rules()); $dataForm = $request->all(); $taskList = new TaskList ; $recurrence =…
laravelanswered Luciano Charles de Souza 46 -
2
votes2
answers53
viewsA: display block is not working on jQuery
Change attr for css. Thus remaining: $("#buttonCadastrarCelulaMembro").css('display','none'); $("#imgCarregando").css('display','block');