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...
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...
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...
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...
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...
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...
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...
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...
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...
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...