Questions tagged as 'laravel'

1
answer

ajax pagination in laravel

How could I make an adaptation of my code to make paging work without updating the page with ajax? My functional paging code looks like this: route set Route::get('/home', 'HomeController@main'); HomeController.php public func...
asked by 01.12.2017 / 11:09
0
answers

Foreach Laravel does not update with tab navigation

I have a view that has tab navigation. When you implement a form that when you save or edit a record it goes to its tab, the foreach that lists the record has stopped working. I need to go to another view and return to the new record to appear....
asked by 14.11.2017 / 20:40
1
answer

Laravel 5 in google app engine - Error 13 Storage bucket

I'm trying to use the google app engine to run a Laravael 5 application, whenever I try to deploy the following error occurs:    ** Updating service [default] ... failed.       ERROR: (gcloud.app.deploy) Error Response: [13] An internal erro...
asked by 14.11.2017 / 19:27
2
answers

Problem downloading audio .wav Laravel 5.2 [closed]

When it comes down to the .mp3 audio it works normally, but when it's a .wav audio, it's low, but when I hear a runtime error. If I go to the directory where the .wav audio is, I can hear it normally, the problem is really only when it is low. D...
asked by 17.11.2017 / 19:30
2
answers

Consume data from an existing table in Laravel

I have a base of use of Laravel, however I have always used this by creating the tables by migrations. I know how to consume data from a database in php too, but in this case I have to build the class for it. I'm trying to make an applicat...
asked by 08.11.2017 / 19:19
1
answer

Laravel - Return checkbox clicked

I need to return checked checkboxes in a view for editing, but I'm having problems. The values until returned are clicked but the foreach is duplicating the checkboxes causing an option to appear more than once on screen, so I ask: Is there a...
asked by 07.11.2017 / 12:42
1
answer

update on laravel

Good afternoon everyone! I created the form, which will send to the "update" method of laravel public function update(Request $r, Voluntarios $vol) { $up = $vol->update($r->all()); var_dump($up); } But it returns fa...
asked by 18.11.2017 / 19:18
1
answer

Login with permissions Laravel 5

I have a login system with permissions made with Laravel's Auth, where there are the options "Student" and "Teacher" to choose from. For example: if he is a teacher, he will return with a screen to register evidence; if you are a student, you...
asked by 18.11.2017 / 19:55
1
answer

Update validation on laravel

I have a problem to do validation in the update in Laravel. My Controller looks like this: public function editar(EspecieRequest $request, Especie $esp) { $especie = Especie::find($esp->id_especie); $valores = Request::all();...
asked by 15.11.2017 / 21:57
0
answers

Rendering templates with blade

My problem is when it's time to render from this section: The part: @include('admin::layouts.includes.footer') is outside the div # wrapper, could someone tell me why and how do I get inside? layout.blade.php <div id="app">...
asked by 16.11.2017 / 10:53