Posts by Allan Conde • 53 points
9 posts
-
0
votes1
answer32
viewsQ: I’m trying to load the session on the main page with Blade’s directives, but it doesn’t, why?
main.blade.php <!doctype html> Hello, world! @yield('conteudo') <!-- Optional JavaScript --> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script…
-
0
votes1
answer53
viewsQ: How to show data stored in Firebase on Ionic?
Provider import { AngularFireDatabase } from '@angular/fire/database'; import { Injectable } from '@angular/core'; @Injectable() export class ContatoProvider { private PATH = "contatos/";…
-
0
votes1
answer1261
viewsQ: How to change the CSS of primeNG components in Angular?
menu.component.html <p-menubar class="menuPerson" [model]="items"></p-menubar> menu.component.css .menuPerson{ background-color: olivedrab; font-size: 14px; } menu.componentts. import {…
-
1
votes1
answer1749
viewsQ: How to make a Java algorithm that can measure the running time of the Heap Sort sort sort algorithm?
I started my algorithm this way so that I can measure its running time, but I’m not sure if it’s right, how to continue with an example: package heapsort; public class Heapsort { public static void…
-
0
votes1
answer89
viewsQ: How can I loop to insert data into a table in my form and then send it to my database?
//Part of the form to which I want to apply the loop <div class="form-row"> <div class="form-group col-md-6"> <label>Curso</label> <input name="cursolivre" id="cursolivre"…
-
0
votes1
answer115
viewsQ: How to communicate data from my database with chart (Highcharts)?
I am beginner in php, I am trying to supply my graphic with information from my bank.…
-
2
votes3
answers4047
viewsQ: How to translate Laravel?
clone that repository https://github.com/caouecs/Laravel-lang.git with language pack for Laravel, copied the en-BR folder to Resources/lang, changed the locale and fallback_locale to en-BR, but my…
-
1
votes1
answer645
viewsA: Insert Image in Laravel Slide Template
got this way, I opened a php tag I used Asset with the following arguments listed below. <?php asset('nome da pasta que criei'/'nome da imagem com tipo da imagem') ?>…
-
-2
votes1
answer645
viewsQ: Insert Image in Laravel Slide Template
How do I insert images into my Laravel Blade template? I want images on my homepage but can not link, I created a folder images inside public to store my images.