Questions tagged as 'laravel'

1
answer

The page expired due inactivity - Laravel

I know there are several post regarding this, but the issue is that I have my field csrf_field() in my form and it works perfectly in local. When I run the application on the hosting server the error appears. I checked the permi...
asked by 04.05.2018 / 17:30
1
answer

Pass a view data by href to another view with method post

I am learning laravel for a job in college with my classmates, they have more experience in the language but none of them could explain how to do this I have a data in a view that I want to send to another to fill a space in a form The cod...
asked by 29.04.2018 / 17:49
0
answers

Versioning with Mix, manifest does not exist

I am working on a branch (dev) where I have a package.json and composer.json with more updated versions than a branch called test (used for online tests) and when doing the merge inside the test branch, It does not merge these 2 files so it show...
asked by 04.05.2018 / 19:32
1
answer

Get id of a form created previously to relate it to another LARAVEL 5.5 table

I write here because I have this doubt, maybe it is silly but I have not managed to solve it .. I have two related tables REVISION and RISKS , the relationship is 1 review has many risks , and 1 risk belongs to 1 revision , I already mad...
asked by 29.06.2018 / 15:52
1
answer

Problem when going back when logging in (Laravel 5.2 php)

I have created a login in Laravel 5.2 but it has a problem when logging in. It redirects me to the admin panel (until then it is ok) but when you press the back arrow of the browser I get the full email field (eg: henry @ gmail.com and the empty...
asked by 25.04.2018 / 04:10
0
answers

Error: TokenMismatchException in VerifyCsrfToken.php line 67:

I'm trying to upload videos using laravel and I'm releasing that error, even putting the {!! csrf_field() !!} and {{ csrf_token() }} keeps throwing me the error, also deactivates in the kernel the \App\Http\Middleware\VerifyCsrf...
asked by 21.04.2018 / 02:21
0
answers

video: bytes written in file are different from those read

I am new with opencv and I have a question. I explain it using the following example: import cv2 import numpy as np def LoadVideo(fileName): # Create a VideoCapture object and read from input file # If the input is taken from the came...
asked by 10.05.2018 / 10:51
0
answers

upload image to laravel ajax

I hope you can support me with uploading an image to laravel 5.6 attached. 'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), ], 'archivosimg' => [ 'driver' =&g...
asked by 06.04.2018 / 21:23
0
answers

problems with the css and js in laravel [closed]

I am using laravel 5.6 and install the Infyom package with the AdminLTE template, the point is that the reference to the css and js of that template are Internet addresses and the view works fine but only on the PC where I am programming it when...
asked by 02.04.2018 / 15:18
0
answers

Laravel - Define access control using Homecontroller

HomeController public function __construct() { $this->middleware(['auth:embajador','auth:experto']); } public function index() { return view('home'); } My problem is that it is cyclizing the informati...
asked by 14.12.2018 / 02:14