I have been researching and thinking about a subject for some days and I still do not understand how to do / use / start:
Scenario
Package: Books (crud)
Package: Authentication module (users + profiles + login + permission)
Doubt...
I'm facing a problem to run composer install because of a package that is incompatible with the version of laravel I use at the moment;
The version I have is 4.1 with php 5.6, but when I run the install I get the message;
...
I'm doing what I want in a way and I'm looking for alternatives or better ways to do it.
I am using Resource Controllers in my application. I'm also using softdelete in many models, so my routes look like this:
Route::get('users/deleted', arra...
I'm having trouble with a link I've created in a view heading to a route . Here is the error:
ErrorException
Route [/user/addUser] not defined
.(View: /var/www/projeto/app/views/principal/index.blade.php)
Routes:
Route::get('/',...
I have the following problem ...
I am migrating a system, and in the same I own a table of clients
This table has a field called " cli_password ", which represents the client password
To use Laravel authentication I had to create a " pa...
My question is this: I have a search form (GET), and I would like to know how to execute submit sending those parameters to the URL in a friendly way.
Note: parameters are not required.
Form :
{{ Form::open(array('route' => 'ne...
In Laravel 5 , I noticed that they have now added namespaces in the application folder. But things were not like that in the Laravel 4 version.
No Laravel 5 , for example Controllers would look like this:
namespace...
I know that in Laravel 4 we can configure several ways to save session data. They are the optional storage mechanisms of session.
Among them, we can select memcached , database , cookie , apc and file , which by...
I'm using Laravel on various projects I use.
I needed to copy a particular file from one location to another, and I saw in the Laravel documentation that I should use File::copy() .
Out of curiosity, as I always do, I decide...
I have two Models that are linked, through belongsToMany , to a relationship table N: N.
So the structure is arranged as follows:
classPermissaoextendsEloquent{publicfunctionniveis(){return$this->belongsToMany('Nivel','niveis_perm...