Questions tagged as 'laravel-5'

1
answer

Folder for Models Laravel 5.1

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 .     
asked by 07.01.2016 / 14:45
1
answer

Difficulties in Creating Routes and Controller Laravel 5.1

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...
asked by 11.04.2016 / 22:01
1
answer

How to add my validation in Laravel Validator?

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...
asked by 10.03.2016 / 17:21
1
answer

Laravel validation

I need to do a validation of data coming from an XML, how can I use a Validation Request ? Or Validation Request only serves data coming from a form?     
asked by 26.05.2015 / 02:46
1
answer

Register password with Hash at Laravel bank

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(...
asked by 25.01.2018 / 17:43
1
answer

Sum of the multiplication of the quantity by value of the product in daily sales

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...
asked by 07.10.2017 / 19:11
1
answer

Laravel 5.4 - Send email with attached txt

The case is simple: I need to generate a txt in Laravel based on Array and then attach this text file with Attachments through Mail :: to (!)     
asked by 03.09.2017 / 01:46
2
answers

Laravel eloquent returning array array

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...
asked by 07.07.2017 / 17:23
2
answers

Result field name instead of id in Laravel 5?

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...
asked by 12.06.2017 / 18:35
2
answers

LARAVEL Login by email or username [closed]

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?     
asked by 11.06.2017 / 19:08