Sevalla is the all-in-one PaaS for your web projects. Host and deploy your applications, databases, object storage, and static sites. Enjoy advanced deployment pipelines, a complete database studio, instant preview apps, and one-click templates. The pricing is simple: no hidden fees, no seat-based pricing, and you pay only for what you use. Get real human support from developers.

Get started now with a $50 credit at Sevalla.com.

Using Factory sequences in Laravel

Original – by Brent Roose – 1 minute read

One of the things I really like about modern Laravel projects, are the new model factories introduced in Laravel 8.

When writing complex tests, you often need quite a lot of setup, and features like factories, and especially factory sequences make that setup significantly easier to do. Take a look at this example:

$blogPosts = BlogPost::factory()
    ->count(3)
    ->published()
    ->sequence(
        ['title' => 'Parallel php'],
        ['title' => 'Fibers'],
        ['title' => 'Thoughts on event sourcing'],
    )
    ->create();

This factory call will make three blog posts. Each post will have a published state, but also a different title, thanks to that sequence method.

Did you know that you even can use array destructuring to immediately get all three blogposts in separate variables?

[$a, $b, $c] = BlogPost::factory()
    ->count(3)
    ->published()
    ->sequence(
        ['title' => 'Parallel php'],
        ['title' => 'Fibers'],
        ['title' => 'Thoughts on event sourcing'],
    )
    ->create();

Pretty neat! These model factories are a great addition to Laravel. Oh and, if you were wondering, the Laravel Idea plugin has full autocomplete support for them in PhpStorm as well!

Stay up to date with all things Laravel, PHP, and JavaScript.

You can follow me on these platforms:

On all these platforms, regularly share programming tips, and what I myself have learned in ongoing projects.

Every month I send out a newsletter containing lots of interesting stuff for the modern PHP developer.

Expect quick tips & tricks, interesting tutorials, opinions and packages. Because I work with Laravel every day there is an emphasis on that framework.

Rest assured that I will only use your email address to send you the newsletter and will not use it for any other purposes.