Good morning, other than Laravel 4 , the 5.1 version creates the Models directly in the App folder, I wanted to know if it will influence something if I create folders to better organize those Models .
I created a CRUD with Modal is working everything right but I created form request data view, queries with BD all inside Routes, I do not think very cool would like to pass these features to the Controller to do but is not working is appearing t...
In% with both 4 and 5, we have class Laravel , which allows specific validations.
By default there are several, such as Validator , required , email , and others.
But I would also like to be able to validate a phon...
Hello everyone, I am not able to register the password with the hash in the database, I can register all the data but the password is not encrypted.
public function CadastroSalvar (Request $request) {
\App\Usuario::create($request->all(...
I have a page of orders, we will take as base a mercantile, where the person buys 3 soft drinks each with the value of $ 6.00 and 2 cookies in the amount of $ 2.00 each.
I first need to multiply these values (3 * 6) and (2 * 2) and then add th...
I have this query using eloquent
$data= \App\Logs::select('id', 'created_at')
->get()
->groupBy(function($val) {
return Carbon::parse($val->created_at)->format('d-M-');
})->toArray();
and it retu...
I have a relationship in Laravel but when I make an query comes the id and not the field name.
Model Evento
public function tipo_evento() {
return $this->hasOne('App\TipoEvento','id','tipo_evento');
}
Mode...
Hello, I am developing an application in Laravel 5.2. * and need to implement a login system by username or login, does anyone have any idea how to configure or do this type of method?