I have a form, where user selects category from DB table "categories" and column "tit...
routes.php: Route::get('users/{id}/edit', array('before' => 'auth|admin', 'uses' => 'UserContr...
I have 2 models, Posts and Users. What's the best way to display all the posts and users from databa...
I have created a custom service provider to bind interface to a eloquent repository: <?php name...
What's the difference between @yield() and @section() @show They both are placeholders for the sec...
Thanks, it's indeed for raw assets. Public folder is for css/js/images.
eriktisme said: If you want to use a repository pattern, then it's bad practice. But on topic, if y...
I know that i can save images that way, but the question was about integrating image upload from sum...
Thanks, so in my Category model i should write something like this: public function subcats()...
Thanks, but this additional layer of abstraction consumes additional time when u're doing simple pro...
The Laravel portal for problem solving, knowledge sharing and community building.