Posts by Arthur Calazans • 44 points
7 posts
-
1
votes1
answer32
viewsA: Decimal type Phinx Slim Framework
It works that way: $oss->addColumn('valor','decimal', ['precision' => 10, 'scale' => 8]);
slimanswered Arthur Calazans 44 -
0
votes1
answer270
viewsA: Problems to load jquery into the Laravel
beauty? So these calls are on the website footer? If you have it on a specific page, you can use the @stack @push('scripts') <script type="text/javascript" src="{{ asset('js/jquery/jquery-ui.js')…
-
0
votes2
answers39
viewsA: Mouse Event on Two Screens
Every time you create a new element by javascript, you can’t access it that way. What you can do is let the element in display:none and then give a $("#tela2").show(). Or you can do the function…
-
-1
votes1
answer70
viewsQ: Virtualhost AWS Ubuntu
Hello big linux ninjas. I’m working on the AWS ec2 Ubuntu, and I need to create a subdomain. I saw some tutorials but none worked. I created a file on: /etc/apache2/sites-available/ called…
-
1
votes1
answer291
viewsA: Create method in the Windows with rollback
I decided to insert DB::beginTransaction(); at the beginning of my code. DB::beginTransaction(); $prod = $this->product->create([ name -> 'produto 1', valor -> '100', active -> '0'…
laravel-5.4answered Arthur Calazans 44 -
0
votes2
answers953
viewsA: How to return the page in LARAVEL 5.4
return redirect(/pagina que você quer)
-
1
votes1
answer291
viewsQ: Create method in the Windows with rollback
I was studying Laravel 5.4 and I came up with a question. As a good programmer I googled several ways and found nothing like. Imagine the following case: $prod = $this->product->create([ name…
laravel-5.4asked Arthur Calazans 44