Laravel

This is some text about laravel.


Definitive Laravel 4 to Laravel 5 Migration Guide

📁 laravel

We like to stay on the cutting edge, so when Laravel 5 was released in February 2015, it wasn’t a question of whether or not we would migrate our 4.x applications across… it was just a matter of when. After a few slightly painful (but successful) migrations, we decided to put together a comprehens…

Read more...

Setting the Environment Name in Laravel

📁 laravel

One of the most important things for you to consider when planning the deployment of your application into production is how to handle detecting the “environment.” The environment name is a string identifier that is unique for each deployment environment. Typically, descriptive names such as “prod…

Read more...

New Response types in Laravel using Custom Facades

📁 laravel

Laravel provides some great tools for simplifying the development of web applications. One of them is the Response facade, which allows us to quickly and easily send information back to the requester (browser window in the case of a normal user, third-party application in the case of API access). …

Read more...

A Pattern for Reusable Repository Design in Laravel

📁 laravel

I like the repository pattern (link), but find it tedious in a lot of ways. We employ the pattern because it enables us to break the dependency between our controllers and/or service layer code and the ORM (typically Eloquent). Unfortunately, it usually involves writing a lot of redundant boilerpla…

Read more...