Questions tagged as 'laravel-5'

1
answer

Providers with support for Laravel 5 [closed]

I would like to hear from you, about a hosting provider that has Laravel 5 framework support. It's a small system, so the cheaper the plans the better. Thank you all!     
asked by 07.01.2016 / 17:57
1
answer

Relationship N: N in Laravel does not write object attributes

My tables briefly have the following structure: minutes: id | vigencia Products: id | nome | descricao ata_producto: ata_id | produto_id | vlr_produto | qtd_produto The same product may have different value depending on t...
asked by 13.09.2015 / 20:23
1
answer

How to concatenate value in a dropdownlist in laravel 5?

How to add the first default value in a dropdownlist? I tried to do this: {!! Form::select('Usuario.est_id',array('null' => 'Selecione') + $estados, null, ['class' => 'form-control']) !!} but I get the error: FatalErrorException in 30...
asked by 21.07.2015 / 23:53
1
answer

Auth always returning false

Well I'm developing a login itself and I have other campos and another tabela , everything goes perfectly but always returns false result. I changed the file Authenticatable.php within \Illuminate\AuthZAut...
asked by 13.10.2016 / 01:23
1
answer

how do I mount a select with two fields using colletivehtml in laravel 5.5?

Good afternoon. I use laravel 5.5 and for forms I use laravelcollective. I mount a select this way: $locals = Local::get()->pluck('codigolocal', 'id'); and the result is a select with value = id and description equal to the...
asked by 06.12.2018 / 15:37
1
answer

How to use "request unique" in the following situation

I have two methods in the Controller that have the function of saving a new check and another one that updates the check with the edit. The two methods pass through the Request before entering into the bank, but the Request validates if the c...
asked by 15.10.2018 / 18:06
1
answer

Form :: select Laravel

I'm having a hard time making a Form:select that fetches information from the database. How is Controller ; public function create() { return View('internos.create'); } As it is in View ; <div class="form-...
asked by 17.12.2018 / 18:54
1
answer

Filter records within a one-month interval

I have several items sold in a month and I would like to display only the items sold in the current month. Example: In September I had a total of 30 items sold, and in August, 20 items. How do I pick up the current date and check the quant...
asked by 04.09.2018 / 01:07
1
answer

I can not get the data of who is logged in

I have a doubt, I would like to recover the data that is logged in without having to go through the view, and use them in any view, so I decided to do in controller __construct plus laravel does not let me take user data . <?php nam...
asked by 12.08.2018 / 19:58
1
answer

Redirection after login laravel 5.5

Good morning, I'm using Laravel's default authentication scafold, and reusing the structure by overwriting the methods I need to behave the way I want. I customized the default model, got it to authenticate and register, everything ok. Howeve...
asked by 13.07.2018 / 14:46