Laravel has always come bundled with some rather useful helpers, namely the string and array helpers. These functions are all included in their respective classes Arr and Str within the Illuminate\Support namespace. But what…
Note: This was written for Laravel 5.0, not 5.1. I will be updating this article for 5.1 when I can. When using Laravel 4, creating a simple user access control was rather…
This is a continuation from a previous article, found here: http://josephralph.co.uk/laravel-simple-route-based-access-control/ This article will cover a slightly more advanced and cleaner approach to creating the route filters. The End Goal The…
Note: This article is done using Laravel 4 and will not work in the new Laravel 5. See here for the Laravel 5 version: http://josephralph.co.uk/laravel-5-simple-route-access-control/ When using Laravel you will notice…