Questions tagged as 'laravel'

0
answers

How to use the chunk method of Laravel Excel?

public function uploadNotaCorte(Request $request, EstadoRepository $estadoRepository) { $error = array(); $path = $request->file('file')->getRealPath(); $notasCorte = Excel::load($path, function($reader) { })->...
asked by 22.12.2017 / 21:52
0
answers

How to validate upload of multiple files in laravel

I have the following validation rule in the controller: $validator = Validator::make($request->all(), [ 'nome' => 'required|max:255', 'valor' => 'required|numeric|min: 0', 'imagens' => 'required|mimes:jpeg,...
asked by 22.12.2017 / 17:33
0
answers

Parameter in the Register laravel

I would like to know if it is possible to pass a parameter by url in the% default% of auth , which is done by Laravel register/login because this login would use in the table make:auth ?     
asked by 22.12.2017 / 22:57
1
answer

How to send image to laravel route with AJAX

I have a common POST route in laravel, but in a separate project I'd like to use AJAX to send an image to this route. I'm going to use the html2canvas to get the screen screenshot. var content = document.getElementById('welcome'); html2canvas...
asked by 20.12.2017 / 20:12
0
answers

Laravel Foreign key constraint incorrectly informed

I could not find the error in my migration, honestly. Someone there can understand why I'm having the following error:    SQLSTATE [HY000]: General error: 1005 Can not create table    imobiliaria . #sql-2d3c_21 (errno: 150 "Fo...
asked by 21.12.2017 / 01:34
0
answers

use the csrf token automatically generated by laravel without using the blade

I'm developing an App with Cordova and wanted to know if it is possible to use the csrf token generated by Laravel, without having to configure the meta tag using Blade, as it is taught in the laravel site: <meta name="csrf-token" co...
asked by 04.12.2017 / 15:36
0
answers

Could not find driver

I need a help with this error, I've already done the installation and everything is ok, but I still continue to show that I need the drive, I used Brew to install Drive.     
asked by 29.11.2017 / 20:03
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
0
answers

API for barcode query

I've been negotiating with a company to be developed, among the necessities came the registration of the product quickly without needing many user inputs. Given this I had the idea of maybe getting the basic information of the products through s...
asked by 30.11.2017 / 02:33
0
answers

Deleting an image on the form

I need to delete one image at a time from my database, I have a n:m table and I can not delete the image. Here's part of the method to delete the image. public function deleteImg(Imagem $imagem) { $imagem()->delete(); \Ses...
asked by 30.11.2017 / 00:18