Advertisement
  1. Code
  2. PHP
  3. Laravel

25 Laravel Tips and Tricks

Scroll to top

There was a period of time, not too long ago, when PHP and its community were, for lack of better words, hated. Seemingly, the headline joke of every day was one that related to how terrible PHP was. Let's see, what new PHP-slamming blog article will be posted today?

Yes, sadly enough, the community and ecosystem simply weren't on the same level as other modern languages.

Yes, sadly enough, the community and ecosystem simply weren't on the same level as other modern languages. It seemed that PHP was destined to live out its dominating lifespan in the form of messy WordPress themes.

But, then, quite amazingly, things began to change - and quickly, too. Like a witch stirring the pot, innovative new projects began popping out of nowhere. Perhaps most notable of these projects was Composer: PHP's definitive dependency manager (not unlike Ruby's Bundler or Node's NPM). While, in the past, PHP developers were forced to wrangle PEAR into shape (a nightmare, indeed), now, thanks to Composer, they can simply update a JSON file, and immediately pull in their desired dependency. A profiler here, a testing framework there... all in seconds!

In the crowded PHP framework world, just as CodeIgniter began to fizzle out, Taylor Otwell's Laravel framework arose out of the ashes to become the darling of the community. With such a simple and elegant syntax, building applications with Laravel and PHP was - gasp - downright fun! Further, with version 4 of the framework leveraging Composer heavily, things finally seemed to be falling into place for the community.


Want migrations (version control for your database)? Done. How about a powerful Active-Record implementation? Sure, Eloquent will do the trick quite nicely. What about testing facilities? Of course. And routing? Most certainly. What about a highly tested HTTP layer? Thanks to Composer, Laravel can leverage many of the excellent Symfony components. When it comes right down to it, chances are, if you need it, Laravel offers it.


While PHP used to be not dissimilar from a game of Jenga - just one block and away from falling to pieces - suddenly, thanks to Laravel and Composer, the future couldn't look any brighter. So pull out some shades, and dig into all that the framework has to offer.


1. Eloquent Queries

Laravel offers one of the most powerful Active-Record implementations in the PHP world. Let's say that you have an orders table, along with an Order Eloquent model:

1
class Order extends Eloquent {}

We can easily perform any number of database queries, using simple, elegant PHP. No need to throw messy SQL around the room. Let's grab all orders.

1
$orders = Order::all();

Done. Or maybe, those orders should be returned in order, according to the release date. That's easy:

1
$orders = Order::orderBy('release_date', 'desc')->get();

What if, rather than fetching a record, we instead need to save a new order to the database. Sure, we can do that.

1
$order = new Order;
2
$order->title = 'Xbox One';
3
$order->save();

Finished! With Laravel, tasks that used to be cumbersome to perform are laughably simple.


2. Flexible Routing

Laravel is unique in that it can be used in a number of ways. Prefer a simpler, more Sinatra-like routing system? Sure, Laravel can offer that quite easily, using closures.

1
Route::get('orders', function()
2
{
3
    return View::make('orders.index')
4
        ->with('orders', Order::all());
5
});

This can prove helpful for small projects and APIs, but, chances are high that you'll require controllers for most of your projects. That's okay; Laravel can do that, too!

1
Route::get('orders', 'OrdersController@index');

Done. Notice how Laravel grows with your needs? This level of accomodation is what makes the framework as popular as it is today.


3. Easy Relationships

What do we do in the instances when we must define relationships? For example, a task will surely belong to a user. How might we represent that in Laravel? Well, assuming that the necessary database tables are setup, we only need to tweak the related Eloquent models.

1
class Task extends Eloquent {
2
    public function user()
3
    {
4
        return $this->belongsTo('User');
5
    }
6
}
7
8
class User extends Eloquent {
9
    public function tasks()
10
    {
11
        return $this->hasMany('Task');
12
    }
13
}

And, with that, we're done! Let's grab all tasks for the user with an id of 1. We can do that in two lines of code.

1
$user = User::find(1);
2
$tasks = $user->tasks;

However, because we've defined the relationship from both ends, if we instead want to fetch the user associated with a task, we can do that, too.

1
$task = Task::find(1);
2
$user = $task->user;

4. Form Model Binding

Often, it can be helpful to link a form to a model. The obvious example of this is when you wish to edit some record in your database. With form model binding, we can instantly populate the form fields with the values from the associated table row.

1
{{ Form::model($order) }}
2
    <div>
3
        {{ Form::label('title', 'Title:') }}
4
        {{ Form::text('title') }}
5
    </div>
6
7
    <div>
8
        {{ Form::label('description', 'Description:') }}
9
        {{ Form::textarea('description') }}
10
    </div>
11
{{ Form::close() }}

Because the form is now linked to a specific Order instance, the inputs will display the correct values from the table. Simple!


5. Cache Database Queries

Too many database queries, and, very quickly, your application can become like molasses. Luckily, Laravel offers a simple mechanism for caching these queries, using nothing more than a single method call.

Let's grab all questions from the database, but cache the query, since it's not likely that this table will be updated frequently.

1
$questions = Question::remember(60)->get();

That's it! Now, for the next hour of pages requests, that query will remain cached, and the database will not be touched.


6. View Composers

You'll encounter situations when multiple views require a certain variable or piece of data. A good example of this is a navigation bar that displays a list of tags.

Too keep controllers as minimal as possible, Laravel offers view composers to manage things like this.

1
View::composer('layouts.nav', function($view)
2
{
3
    $view->with('tags', ['tag1', 'tag2']);
4
});

With this piece of code, any time that the layouts/nav.blade.php view is loaded, it will have access to a variable, $tags, equal to the provided array.


7. Simple Authentication

Laravel takes a dead-simple approach to authentication. Simply pass an array of credentials, likely fetched from a login form, to Auth::attempt(). If the provided values match what is stored in the users table, the user will instantly be logged in.

1
$user = [
2
    'email' => 'email',
3
    'password' => 'password'
4
];
5
6
if (Auth::attempt($user))
7
{
8
    // user is now logged in!

9
    // Access user object with Auth::user()

10
}

What if we need to log the user out - perhaps, when a /logout URI is hit? That's easy, too.

1
Route::get('logout', function()
2
{
3
    Auth::logout();
4
    
5
    return Redirect::home();
6
});

8. Resources

Working RESTfully in Laravel has never been easier. To register a resourceful controller, simple call Route::resource(), like so:

1
Route::resource('orders', 'OrdersController');

With this code, Laravel will register eight routes.

  • GET /orders
  • GET /orders/:order
  • GET /orders/create
  • GET /orders/:order/edit
  • POST /orders
  • PUT /orders/:order
  • PATCH /orders/:order
  • DELETE /orders/:order

Further, the companion controller may be generated from the command line:

1
php artisan controller:make OrdersController

Within this generated controller, each method will correspond to one of the routes above. For examples, /orders will map to the index method, /orders/create will map to create, etc.

We now have the necessary power to build RESTful applications and APIs with ease.


9. Blade Templating

While, yes, PHP is by nature a templating language, it hasn't evolved to become an overly good one. That's okay, though; Laravel offers its Blade engine to fill the gap. Simply name your views with a .blade.php extension, and they will automatically be parsed, accordingly. Now, we can do such things as:

1
@if ($orders->count())
2
    <ul>
3
        @foreach($orders as $order)
4
            <li>{{ $order->title }}</li>
5
        @endforeach
6
    </ul>
7
@endif

10. Testing Facilities

Because Laravel makes use of Composer, we instantly have PHPUnit support in the framework out of the box. Install the framework and run phpunit from the command line to test it out.

Even better, though, Laravel offers a number of test helpers for the most common types of functional tests.

Let's verify that the home page returns a status code of 200.

1
public function test_home_page()
2
{
3
    $this->call('GET', '/');
4
    $this->assertResponseOk();
5
}

Or maybe we want to confirm that, when a contact form is posted, the user is redirected back to the home page with a flash message.

1
public function test_contact_page_redirects_user_to_home_page()
2
{
3
    $postData = [
4
        'name' => 'Joe Example',
5
        'email' => 'email-address',
6
        'message' => 'I love your website'
7
    ];
8
9
    $this->call('POST', '/contact', $postData);
10
11
    $this->assertRedirectedToRoute('home', null, ['flash_message']);
12
}

11. Remote Component

As part of Laravel 4.1 - scheduled to be released in November, 2013 - you can easily write an Artisan command to SSH into your server, and perform any number of actions. It's as simple as using the SSH facade:

1
SSH::into('production')->run([
2
    'cd /var/www',
3
    'git pull origin master'
4
]);

Pass an array of commands to the run() method, and Laravel will handle the rest! Now, because it makes sense to execute code like this as an Artisan command, you only need to run php artisan command:make DeployCommand, and insert the applicable code into the command's fire method to rapidly create a dedicated deployment command!


12. Events

Laravel offers an elegant implementation of the observer pattern that you may use throughout your applications. Listen to native events, like illuminate.query, or even fire and catch your own.

A mature use of events in an application can have an incredible effect on its maintainability and structure.

1
Event::listen('user.signUp', function()
2
{
3
    // do whatever needs to happen

4
    // when a new user signs up

5
});

Like most things in Laravel, if you'd instead prefer to reference a class name, rather than a closure, you can freely do so. Laravel will then resolve it out of the IoC container.

1
Event::listen('user.signUp', 'UserEventHandler');

13. View All Routes


As an application grows, it can be difficult to view which routes have been registered. This is especially true if proper care has not been given to your routes.php file (i.e. abusive implicit routing).

Laravel offers a helpful routes command, which will display all registered routes, as well as the controller methods that they trigger.

1
php artisan routes

14. Queues

Think about when a user signs up for your application. Likely, a number of events must take place. A database table should be updated, a newsletter list should be appended to, an invoice must be raised, a welcome email might be sent, etc. Unfortunately, these sorts of actions have a tendency to take a long time.

Why force the user to wait for these actions, when we can instead throw them into the background?

1
Queue::push('SignUpService', compact('user'));

Perhaps the most exciting part, though, is that Laravel brilliantly offers support for Iron.io push queues. This means that, even without an ounce of "worker" or "daemon" experience, we can still leverage the power of queues. Simply register a URL end-point using Laravel's helpful php artisan queue:subscribe command, and Iron.io will ping your chosen URL each time a job is added to the queue.


Simple steps to faster performance!


15. Easy Validation

When validation is required (and when isn't it), Laravel again comes to the rescue! Using the Validator class is as intuitive as can be. Simply pass the object under validation, as well as a list of rules to the make method, and Laravel will take care of the rest.

1
$order = [
2
    'title' => 'Wii U',
3
    'description' => 'Game console from Nintendo'
4
];
5
6
$rules = [
7
    'title' => 'required',
8
    'description' => 'required'
9
];
10
11
$validator = Validator::make($order, $rules);
12
13
if ($validator->fails())
14
{
15
    var_dump($validator->messages()); // validation errors array

16
}

Typically, this type of code will be stored within your model, meaning that validation of, say, an order could be reduced to a single method call:

1
$order->isValid();

16. Tinker Tinker


Especially when first learning Laravel, it an be helpful to tinker around with the core. Laravel's tinker Artisan command can help with this.

As part of version 4.1, the tinker command is even more powerful, now that it leverages the popular Boris component.

1
$ php artisan tinker
2
3
> $order = Order::find(1);
4
> var_dump($order->toArray());
5
> array(...)

17. Migrations

Think of migrations as version control for your database. At any given point, you may "rollback" all migrations, rerun them, and much more. Perhaps the true power rests in the power to push an app to production, and run a single php artisan migrate command to instantly construct your database.

To prepare the schema for a new users table, we may run:

1
php artisan migrate:make create_users_table

This will generate a migration file, which you may then populate according to your needs. Once complete, php artisan migrate will create the table. That's it! Need to roll back that creation? Easy! php artisan migrate:rollback.

Here's an example of the schema for a frequently asked questions table.

1
public function up()
2
{
3
    Schema::create('faqs', function(Blueprint $table) {
4
        $table->integer('id', true);
5
        $table->text('question');
6
        $table->text('answer');
7
        $table->timestamps();
8
    });
9
}
10
11
public function down()
12
{
13
    Schema::drop('faqs');
14
}

Notice how the drop() method performs the inverse of up(). This is what allows us to rollback the migration. Isn't that a lot easier that wrangling a bunch of SQL into place?


18. Generators

While Laravel offers a number of helpful generators, an incredibly helpful third-party package, called "Laravel 4 Generators," takes this even further. Generate resources, seed files, pivot tables, and migrations with schema!

In this previous tip, we were forced to manually write the schema. However, with the generators package enabled, we can instead do:

1
php artisan generate:migration create_users_table --fields="username:string, password:string"

The generator will take care of the rest. This means that, with two commands, you can prepare and build a new database table.

Laravel 4 Generators may be installed through Composer.


19. Commands

As noted earlier, there are number of instances when it can be helpful to write custom commands. They can be used to scaffold applications, generate files, deploy applications, and everything in between.

Because this is such a common task, Laravel makes the process of creating a command as easy as it can be.

1
php artisan command:make MyCustomCommand

This command will generate the necessary boilerplate for your new custom command. Next, from the newly created, app/commands/MyCustomCommand.php, fill the appropriate name and description:

1
protected $name = 'command:name';
2
protected $description = 'Command description.';

And, finally, within the command class' fire() method, perform any action that you need to. Once finished, the only remaining step is to register the command with Artisan, from app/start/Artisan.php.

1
Artisan::add(new MyCustomCommand);

Believe it or not; that's it! You may now call your custom command from the terminal.


20. Mock Facades

Laravel leverages the facade pattern heavily. This allows for the clean static-like syntax that you'll undoubtedly come to love (Route::get(), Config::get(), etc.), while still allowing for complete testability behind the scenes.

Because these "underlying classes" are resolved out of the IoC container, we can easily swap those underlying instances out with mocks, for the purposes of testing. This allows for such control as:

1
Validator::shouldReceive('make')->once();

Yep, we're calling shouldReceive directly off of the facade. Behind the scenes, Laravel makes use of the excellent Mockery framework to allow for this. This means that you may freely use these facades in your code, while still allowing for 100% testability.


21. Form Helpers

Because building forms can frequently be a cumbersome task, Laravel's form builder steps in to ease the process, as well as leverage many of the idiosyncrasies related to form construction. Here are a few examples:

1
{{ Form::open() }}
2
    {{ Form::text('name') }}
3
    {{ Form::textarea('bio') }}
4
    {{ Form::selectYear('dob', date('Y') - 80, date('Y')) }}
5
{{ Form::close() }}

What about tasks, such as remembering input from the previous form submission? Laravel can do all of that automatically!


22. The IoC Container

At the core of Laravel is its powerful IoC container, which is a tool that assists in managing class dependencies. Notably, the container has the power to automatically resolve classes without configuration!

Simply typehint your dependencies within the constructor, and, upon instantiation, Laravel will use PHP's Reflection API to intelligently read the typehints, and attempt to inject them for you.

1
public function __construct(MyDependency $thing)
2
{
3
    $this->thing = $thing;
4
}

As long as you request the class out of the IoC container, this resolution will take place automatically.

1
$myClass = App::make('MyClass');

An important note is that controllers are always resolved out of the IoC container. As such, you may free typhint your controller's dependencies, and Laravel will subsequently do its best to inject them for you.


23. Environments

While a single environment might work for small projects, for any applications of size, multiple environments will prove essentials. Development, testing, production...all of these are essential and require their own configuration.

Maybe your test environment uses a database in memory for testing. Maybe your development environment uses different API keys. Likely, your production environment will use a custom database connection string.

Luckily, Laravel makes our job simple once again. Have a look at bootstrap/start.php in your app.

Here's a basic demonstration of setting both a local and production environment, based upon the browser's address bar.

1
$env = $app->detectEnvironment(array(
2
    'local' => array('localhost'),
3
    'production' => array('*.com')
4
));

While this will work, generally speaking, it's preferred to use environment variables for this sort of thing. No worries; this is still doable in Laravel! Instead, simply return a function from the detectEnvironment method on the container object.

1
$env = $app->detectEnvironment(function()
2
{
3
    return getenv('ENV_NAME') ?: 'local';
4
});

Now, unless an environment variable has been set (which you will do for production), the environment will default to local.


24. Simple Configuration

Laravel, yet again, takes a dead-simple approach to configuration. Create a folder within app/config that matches your desired environment, and any configuration files within it will take precedence, if the environment name matches. As such, to, say, set a different billing API key for development, you could do:

1
<?php app/config/development/billing.php
2
3
return [
4
    'api_key' => 'your-development-mode-api-key'
5
];

The configuration switcharoo is automatic. Simply type Config::get('billing.api_key'), and Laravel will correctly determine which file to read from.


25. Top-Shelf Further Learning

When it comes to education, the Laravel community, despite its relatively young age, is a never-ending well. In little over a year, a half-dozen different books - related to all matters of Laravel development - have been released.

Learn everything from the basics, to testing, to building and maintaining large apps!

Advertisement
Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Code tutorials. Never miss out on learning about the next big thing.
Advertisement
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.