I'm developing a project of "borrowing" things from a company and I'm locked in a key module. So I do not have much experience in laravel, so I came across the following situation:
Database
- I have a LOCAL table that correlates with multip...
The query that works in PhpMyAdmin:
Select sum(D.CargaHoraria) as CargaHorariaTotal, C.NomeCurso, C.CursoId, A.Imagem
from Curso C
inner join Disciplina D on D.CursoId = C.CursoId...
I am building a RestAPI using Laravel / Lumen , in tests it can happen that the return is entirely in HTML, this occurs when that already famous screen appears: Whoops looks like something went wrong
This is very difficult to test the re...
Assuming that all% of% of inputs have the same name as the column of the database.
public function create(){
// o que está abaixo é um exemplo com os dados já populados
$arrayDados= Input::all();
unset($arrayDados["_token"]);...
I'm making a form where the user can insert an image along with the text. Searching the internet I found KCFinder that does exactly what I need. I made it up with CKEditor and so far so good.
The problem is that I'm developing the application wi...
I have two blade.php files and I can not see the content in the browser.
@extends('layouts.index')
@section('content')
@parent
<div class="container">
<div class="row">
<div class="col-lg-12 tex...
Hello, I'm starting to work with laravel 5 and am having a problem when I run the migrate commands the data is lost in the database, is this expected?
The command php artisan migrate works on the first call and the other php artisan...
Personally I just uploaded a site of mine made in Laravel 5.2 with pho 5.6 locally. I uploaded to a shared hosting in Locaweb that I have. I configured PHP 5.6 correctly and uploaded the site to this giving me the following error message.
...
I need a combobox with data coming from the database, but this fill should occur when loading the view.
Since the view is not the correct place to write code, how to feed the combobox? Through a method in a controller? What is the 'mechanism'...
My note has crashed and I'm setting up the vagrant virtualbox environment in another note.
I was using Lavarel 5.2. Can I install version 5.3? Will I have any compatibility issues with my projects made in 5.2?
Obg