Category: Laravel

laravel 0

Exploring Laravel Views: Forms (Laravel 4)

In this Laravel article, I’m going to go over how to create and use forms in your views. Laravel has it’s own built in form generator which is quite nice to use. You could...






laravel 0

Laravel Route Groups (Laravel 4)

I just found out that in Laravel you can add groups to your routes. Say for instance that you need to apply an authentication filter inside many routes. Instead of adding that filter through...






laravel 0

Migrations and Seeding with Laravel (Laravel 4)

Instead of working and creating the database tables yourself, Laravel has an amazing feature for database migrations and management. You can easily enter in “dummy” data by seeding data into your database which is...