Posts by Jonas Ferreira • 104 points
7 posts
-
0
votes2
answers145
viewsA: Laravel Blade (Error While Displaying Text)
Solution - used the function mb_strtolower {{ ucwords(mb_strtolower($produto->produto)) }}
-
2
votes2
answers145
viewsQ: Laravel Blade (Error While Displaying Text)
Hello, I’m using Blade to show data, the q problem when using the functions ucwords and strtolower is not displayed. (without the right functions, but the text is ugly, or all uppercase, or…
-
1
votes2
answers394
viewsA: Prevent multiple Ubmit via jQuery
I would disable the button after the user clicked //Javascript Document.getElementById("button"). disabled = true; Or in Jquery $("button"). prop("disabled",true);…
-
3
votes1
answer2611
viewsA: How to create app for android with Html5
Has many ways... 1 - Ionic (Android, IOS, WP) (http://ionicframework.com/) 2 - Xamarin (Android, IOS, WP) (https://www.xamarin.com/) 3 - Or use Webview (Android) - In this vc makes your application…
-
1
votes2
answers1000
viewsA: How to Catch Results inside the loop and grouping into a variable outside it
Saving inside an array would help? $dados = array(); $sql55 = "SELECT * FROM finan WHERE MONTH(data_fechamento)= '02' "; $resultado55 = mysql_query($sql55) or die( mysql_error()); while ($row55 =…
phpanswered Jonas Ferreira 104 -
1
votes1
answer140
viewsA: Laravel 5.2 non-object problem in foreach
Opa, by what I noticed the question is being in Controller...vc is not calling the relations, just calling each Model separately... In case you were supposed to call it that way.. //Controller.…
-
-1
votes1
answer1914
viewsQ: Error Installing Ionic + Cordova
error messages when trying to install Ionic (npm install -g Cordova Ionic) Could someone help me? I am using Node 6.9. Thank you…