I have a routes.php /* * Web */ Route::group(['namespace' => '\Smartii\Controllers\Web'], funct...
You should be using is_numeric instead of is_integer is_integer(1) //true is_integer('1') //false i...
You are going against MVC here. It seems like you are trying to decide what parts of the Model you w...
If you are using php 5.4 you can use $this->app in the closure. $this->app->validator->r...
I haven't tested this but I imagine something like this could work //defined elsewhere $langAbbrevia...
Auth is something you will be doing on most actions. So much code can be saved by putting your auth...
The Laravel portal for problem solving, knowledge sharing and community building.