Questions tagged as 'laravel-5'

1
answer

Laravel with Site + Cms + Intranet

I am creating a website that will be a cms and an intranet. In CakePhp I separated these applications with Plugins, that is, site in the root of the project / cake and plugins for the others. Well laid out, organized and functional How can I...
asked by 31.07.2016 / 03:40
1
answer

Datatable with pagination server side

I searched a lot in Google but did not have a clear path of how to make a datatable that contains pagination by the server, or seka, that on each page it made an individual request of it. All I saw, it makes the php request with the back end,...
asked by 08.11.2016 / 20:28
1
answer

Ajax (POST) Laravel

I am having the famous error 419, which for a certain moment I managed to solve, but after restarting the server, it stopped working. Route: Route::post('ajax/Register', 'Ajax@Register'); Controller: public static function Register() {...
asked by 02.10.2018 / 22:56
2
answers

How to create a progress bar in PHP using the Laravel Framework?

Kindly, someone can help me. I need to create a progress bar for a PHP application using the Laravel framework. Example: When loading (displaying the DB list) a table with three thousand records displaying the status in a progress bar.     
asked by 09.07.2018 / 15:03
2
answers

Laravel does not return variable passed by with

Hello, how are you? Why Laravel is not picking up the object in the view. Searching the session I can get the data. /* ProdutoController */ public function deleta($id){ $prod = Produto::find($id); $prod->delete(); return redire...
asked by 11.07.2016 / 03:26
1
answer

Select multiple checkboxes with foreach, coming from the bank in laravel?

I'm populating a checkbox with the bank information, I'm trying to get it to read all checked checkboxes. Controller public function store(RequestProduto $request) { $data = new Produtos; $data->nome_visivel = $request->no...
asked by 25.11.2016 / 14:22
3
answers

Register user with Laravel

I am putting together an application, where an employee is registered, and this employee belongs to a company, which comes from the users table. When I do the registration process, the following error message appears: "SQLSTATE[HY000]: Gene...
asked by 03.07.2018 / 20:55
1
answer

What is the purpose of illuminate in laravel?

Currently I have ventured into framework laravel and in some cases I came across a command in the header of my files just below namespace called illuminate . For example: use Illuminate\Database\Eloquent\Model; I'd...
asked by 02.08.2018 / 03:34
1
answer

Error fetching data for a view [closed]

I'm trying to bring data to a view to do some testing on Laravel but it's not working. Controller class ProfileController extends Controller { private $aluno; private $request; public function __construct(Aluno $aluno, Request $request...
asked by 12.05.2016 / 14:45
1
answer

LARAVEL 5.3 template Blade is not updating page

Good morning. I'm a beginner in the PHP Laravel framework and I have the following difficulty: I write my html inside my .blade.php file and call it in a view on Route but the information I've updated in the code is not appearing in the br...
asked by 14.09.2016 / 16:23