Questions tagged as 'laravel-5.5'

0
answers

Return view and data with laravel and vuejs

I'm developing an application in laravel and the calls to get data with vues but I have a problem. This is my controller return for the view: public function dashboard() { if(session('usuario_id') !== null) { $usuario = U...
asked by 14.01.2018 / 02:38
1
answer

Refresh page conflicting between laravel and vuejs

I'm studying the integration between laravel and vuejs, however, when I configure the routes on the vue-router, when I refresh the page, laravel does not find the page or else I need to go back to the index of the application to run it again . I...
asked by 10.01.2018 / 05:17
0
answers

Laravel 55. queued

I'm starting in Laravel. I installed 5.5 and after exceeding this command php artisan make: command MyCommand --queued The error is as follows: "--queued" option does not exist. Reading a little more, the command exists in 5.1. What is...
asked by 09.12.2017 / 00:48
1
answer

How to make a radiobox call list with laravel?

Hello, I'm a beginner at laravel and I'm doing a project for a school whose one of the features of the project is to make a list of student presence. Where students from a given class will be listed in a table that will have the radio box fields...
asked by 30.11.2017 / 14:28
1
answer

Change session variable value Laravel

I have a problem with how to change the session variable in Laravel. When the user logs in, some variables are set in the session, one of them is the user name. In a given form, there is the option to change the user data, if it changes the name...
asked by 25.11.2017 / 05:14
0
answers

SQLSTATE [23000]: Integrity constraint violation: 1452 Can not add or update a child row laravel

Well folks, even though I checked several answers in the forum, I still can not solve my problem. Schema::create('alunos', function (Blueprint $table) { $table->integer('id_academia')->unsigned(); $table->incre...
asked by 23.11.2017 / 07:44
1
answer

Laravel 5.5 Collective checkbox

Then friends are fine with you, I'm starting in Laravel and I'm not able to solve a problem that should be simple. I have a view that inserts data in db with a form built through collective and a single checkbox that save...
asked by 22.11.2017 / 23:24
1
answer

How to create a custom Auth controller in Laravel 5.5?

I created a custom Auth controller in Laravel 5.5 with the action "store" inside it, then I authenticated using the auth->attempt() method that returns true . So far so good, the problem starts when I try to use the "auth" middle...
asked by 17.11.2017 / 02:31
1
answer

Validation laravel compare 2 fields not to repeat in the database?

I need an if to verify 2 values of the register and 2 of the bank, if both are equal should not occur the registration. <div class="container-fluid"> <form action="adiciona" method="post" > <div class="form-group has...
asked by 30.10.2017 / 14:00