Questions tagged as 'laravel'

1
answer

Route of Laravel 5.5 with "where"

Hi, I'm starting to move my web to Laravel and I run into a problem with a clause where that has a small regex Route::get('/{region}/leader/{bracket}', 'LeaderController') ->where(['region' => '(en|us)', 'bracket' => '(2...
asked by 01.11.2017 / 05:07
2
answers

answer status = 200 with Laravel

After receiving data from a URL in the form of json, I must respond with status [acknowledgment] (ACK 200) so that it does not continue to send the notification.  this is the function: public function tryNotification(Request $request) {...
asked by 30.10.2017 / 16:26
1
answer

Error Laravel

I have to check a multiplication table and it gives me an error when I want to send the results to the view: In the view: <form action="FormTablaJuego" method="POST"> {!! csrf_field(); !!} @for($i=0;$i<11;$i...
asked by 09.11.2017 / 21:29
1
answer

Undefined variable: (2/2) ErrorException in a View.

I'm trying to import a view to a file in pdf format and it says that I do not have the variable defined. I'm using laravel-dompdf and the migrations are in MySQL . I have this error:    (2/2) ErrorException       Undefined variabl...
asked by 26.10.2017 / 09:46
1
answer

Call constant attributes of a class from laravel blade?

Hello, I have the next class namespace App\Repository\Constants\Models; class InstanceModelContant { const ALREADY_DEMO = "Usted ya posee un demo."; const ALREADY_INSTANCE = "Ya tiene un servidor con estas caracteristicas."; const...
asked by 25.10.2017 / 19:39
1
answer

Problem with dynamic selector undefined

Hi, I have a problem with my dynamic selector, it works correctly, except that it does not show me the values in the second select, I think the problem is in the java script code when printing the value in each select since I iterates correctly...
asked by 03.11.2017 / 02:33
1
answer

Modify connection to SQL Server from Laravel 5.5 to manipulate dates

According to what Taylor says here in this commentary: link    You probably need to override the database link in the IoC and inject a custom ConnectionFactory implementation into the database administrator. Who can help me to do this?...
asked by 27.10.2017 / 00:44
1
answer

Create custom view for Error Exception in Laravel 5.4

I would like to create custom error views, I have created the locations in Handler.php but when I have an error: ERROR_EXCEPTION is not redirected to the error view: 500 Should I create some extra view for this error? my code is: publ...
asked by 23.10.2017 / 02:04
0
answers

Webcam in modal window

I am developing a system in laravel and I am trying to implement a QR code reader in a modal, the problem is that I do not load the webcam in the modal, I am using html5-qrcode.min.js to decode the qr and upload the webcam, I've tried it on a se...
asked by 16.11.2017 / 20:24
2
answers

How to save array in a single field in msql

I have a problem I have 3 tables in which in the first two the data is saved correctly, but in the last table only the value of subject1 and code-subject1 are saved for each iteration of the for cycle, I think the problem is in the form of how I...
asked by 30.10.2017 / 21:45