The scenario: User creates a new page. Once he writes the content, he has the option to select the d...
Anyone knows of an open source project built with them together, or at least some resources to get m...
When I test manually, everything works, but RegisterCept.php functional test just won't pass $I = ne...
So I have two forms on a single page. Login (email, password) and register (username, email, passwor...
I'd like to use Homestead for a non-laravel project, just a simple sandbox if you will, that has a f...
Event::listen('illuminate.query', function($sql) { var_dump($sql); }); Paste this to routes.php an...
I'm guessing you don't have slugs set on older DB entries yet. Try creating a script that will loop...
Create a new filter, check if the user is logged in and has the privileges to view the page, if not,...
$user = User::create($input); if($user->fails()) { // user not saved, return error } // user...
composer create-project laravel/laravel . --prefer-dist Notice the dot. It specifies that it should...
The Laravel portal for problem solving, knowledge sharing and community building.