Posts by Brendo Vale • 51 points
6 posts
-
1
votes2
answers242
viewsA: How to separate a web system with API in domains?
The type of application you are developing is multi tenant. Has a tutorial on how to create (English) ->…
-
0
votes1
answer164
viewsA: How do I receive the key of an array in the controller in a variable?
Here you will have to do one by one, type in the console to see the routes that Resource is creating: php artisan route:list You will have to remove this route and create new ones.…
-
0
votes1
answer249
viewsA: How to change the value of an input type text to a date format in Laravel
Good afternoon, you can set the input type to date <input type="date" class="form-control datepicker form-control-alternative{{ $errors->has('birth_date') ? ' is-invalid' : '' }}"…
laravelanswered Brendo Vale 51 -
1
votes1
answer46
viewsA: How do I make it impossible for the person to submit the form several times in Laravel?
Good afternoon, you can put a javascript code to block the next click. Here’s an example of how to do this: <button type="submit" onclick="this.disabled = true">Enviar…
-
0
votes2
answers162
viewsA: PRIMARY KEY AUTOINCREMENT - Android Studio Error
You can see the INSERT that is not informing the columns. Example of INSERT: INSERT INTO people ( first_name, last_name ) VALUES ( 'John', 'Smith' ); Reference:…
-
0
votes1
answer282
viewsA: How to import files from node_modules / folder into my view files?
Hello, I imagine it is not possible to use directly from the node_modules folder because it is not public for security reasons. 1 Solution is to use the webpack and compile in conjunction with your…