Questions tagged as 'laravel'

0
answers

Problem passing parameter in form | Laravel

I have an application for project management, and that each project has its tasks. These tasks can be deleted or completed. Each task is displayed through a foreach, which is inside a view, being displayed inside a card, and inside this card,...
asked by 29.11.2018 / 02:23
0
answers

How to do UPDATE 1 to 1, with four tables in laravel

I'm working with a database already populated. It has four tables (Student, Clinical, Family, and Compulsory Type), where Student receives foreignkey from the three tables; Model Student class Aluno extends Model{ public $timestamps...
asked by 28.11.2018 / 12:14
0
answers

With open edit within a modal Laravel

Good morning staff I would like to know if it is possible to open a modal with data and variable of a function edit in laravel? I CALL THE EDIT ON THE INDEX SCREEN <a title="Editar Requisição" href="{{route('requisicao.edit',$requis...
asked by 28.11.2018 / 14:24
1
answer

Show data from the .env file in blade

I would like to read some data from the file .env on page .blade.php , but some do not work, for example, I'm using the following way: apkey: {{env('PUSHER_APP_KEY')}} #ler chave PUSHER_APP_KEY key: {{config('da...
asked by 28.11.2018 / 14:03
1
answer

Error Laravel | MethodNotAllowedHttpException

I'm trying to send a form to update a certain record in the baco, but it displays the error message:    MethodNotAllowedHttpException I'm using route resources, my route is defined: Route::resource('tasks', 'TaskController'); And my...
asked by 01.12.2018 / 14:21
1
answer

Script linux Artisan Laravel

I hired a shared server, which runs scheduled tasks ( CRON TABLE ) via linux scripts (.sh). How do I run a php artisan ( php artisan enviar:emaildiario ) command inside this linux script? Server UOL: Script:     
asked by 29.11.2018 / 23:09
0
answers

Error saving double in MySQL 5.7 [duplicate]

Good morning guys! I have the following situation: I have 3 fields in my table: nota1, nota2, and final_note (average of the two). All three fields are of type double . There is a problem saving some averages. For example: nota1 =...
asked by 30.11.2018 / 14:41
0
answers

Laravel Jobs Queue

I have a question, I'm trying to run the jobs using Supervisor to run concurrent jobs, but the command does not work with php artisan queue: work and yes with php artisan queue: work --queue = high, Migration I'm using QUEUE_DRIVER as a data...
asked by 30.11.2018 / 17:28
0
answers

Laravel: Templates blades, Keep a modification made by a script after the view is extended

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script><divid="cm-menu-scroller"> <ul class="cm-menu-items"> <!-- Melhorias:...
asked by 28.11.2018 / 17:31
1
answer

Format date in laravel

I have this return and I want to convert to save the date in the YEAR - MES - DAY $dataOs = date('Y-m-d', strtotime($request->data)); When I print like dd($dataOs); sometimes it goes out the right way 2018-11-02 and sometim...
asked by 23.11.2018 / 19:15