Questions tagged as 'laravel-5'

0
answers

how to write html in ajax

Hello, I have this code for a table with user data. I want to write the options to edit and delete in ajax, but I do not know how they are written, if someone could tell me how it would be helpful PS: I know it is poorly written, so I want yo...
asked by 12.02.2018 / 16:49
0
answers

Very heavy database in Laravel

Good morning: I have a database, with a column with 20,000 records, which will increase. When trying to connect locally, I get this problem: [Mon Feb 5 10:42:12 2018] PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried...
asked by 05.02.2018 / 10:49
0
answers

Debugbar of Laravel

Good morning I have cloned the repository link which I can not get going and at the root it shows me a blank screen. link Laravel debugbar only throws this info which I do not get anything clear. Any ideas? Thanks in...
asked by 31.01.2018 / 10:21
0
answers

Error using laravel excel Class 'PHPExcel_Shared_Font' not found

I am using the laravel excel package but I get the following error when entering the project after installing it Class 'PHPExcel_Shared_Font' not found I've tried composer update composer install and even then it does not work     
asked by 09.02.2018 / 17:23
1
answer

View Not Found laravel 5.5

I am using an Apache / 2.4.25 host service (Debian) and when I enter the admin view, I am throwing this. The requested URL / admin / boton_panico was not found on this server. in web.php I have this way Route::get('admin', "PaginasControlle...
asked by 26.01.2018 / 12:01
1
answer

Laravel 5.5 and Request

Good morning, I will try to explain myself as best as possible, I am new to Laravel What I want to do is be able to save DB fields with data but they are not in the form, because I bring that data from a webservice, which works well, check it...
asked by 20.01.2018 / 14:40
1
answer

Add foreign key data Laravel in the controller

I have the following driver public function store(MachineCreateRequest $request) { $user_id = auth()->id(); $company_id = User::find($user_id)->company->id; //ID = 3 $machine->company_id = $company_id; $machine...
asked by 23.01.2018 / 01:37
0
answers

Referencing element belonging to collection de laravel

I'm trying to reference an element in a laravel collection and it does not work, specifically those that are within heading: I tried $ collection-> heading and $ collection-> heading () but it produces an error     
asked by 31.01.2018 / 19:40
2
answers

The controller does not receive a laravel argument 5.3

In the view: {!! Form::model($evento,['route'=>['eventos.update',$evento->id], 'method'=>'PUT','files'=> true])!!} @include('eventos.form.editar') {!! Form::submit('Editar',['class'=>'btn btn-primary']) !!} {!! Form::close() !!}...
asked by 17.01.2018 / 02:33
1
answer

NotFoundHttpException in RouteCollection.php line 161

Greetings, I'm working on laravel 5.3 and none of my routes work, the only one that works is the root path '/' , I do not understand why. web.php <?php Route::get('/',function(){ return view("certificado.index"); }); /*Route:...
asked by 23.09.2017 / 19:41