Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Browse all series

What's New in Laravel 8

Laravel 8 is here! This release includes brand new application scaffolding, class-based model factories, migration squashing, time traveling, and so much more. Join me as, one topic per episode, we review everything you need to know!

Progress

Series Info

Episodes
12
Run Time
59m
Difficulty
Beginner
Last Updated
Dec 10, 2020
Version
Latest

Series Episodes

  1. Setup (1)
    1. Preparing for Laravel 8

      Before we dive into the new features in Laravel 8, let's first pull in the latest version of the Laravel Installer tool. This new version includes the ability to generate the necessary Jetstream scaffolding when creating a Laravel app. Next, we'll install a fresh copy of Laravel 8.
  2. What's New (11)
    1. The New Models Directory

      First up on our journey is the new models directory and namespace.
    2. Squash a Massive Migrations Folder

      Those of us with long-running Laravel applications are well-aware of how massive the migrations folder can get. The Laracasts codebase, itself, has well over 100 migrations that must run every time I refresh the database. As part of Laravel 8, you can now squash these down into a schema file.
    3. Class-Based Model Factories

      In Laravel 8, all generated models include a new HasFactory trait. In this episode, we'll review the new class factories as well as how to execute them.
    4. Model Factory Relationships

      Before we move on, let's dig a bit more into the new model factory generation. In this episode, we'll review relationships and the has magic method.
    5. Maintenance Mode Secrets

      Laravel 8 ships with improved maintenance-mode functionality. You can now pre-render templates and specify a secret key to effectively "whitelist" any users you share it with.
    6. Cleaner Closure-Based Event Listeners

      If you enjoy using the traditional Event::listen() syntax for registering event listeners, you'll be happy to hear that the syntax is now a bit cleaner. In this episode, we'll review a basic registration example, while also taking a look at the new queueable() function.
    7. Wormholes

      The new Wormhole class allows for Carbon-based time-traveling. This can be useful in testing situations where you need to setup a world where Carbon::now() returns a specific date and time that you specify.
    8. Improved Rate Limiting

      Laravel 8 ships with an improved API for declaring rate limits on a per-key basis. In this episode, we'll review the differences between the Laravel 7 and 8 approaches.
    9. Jetstream

      Jetstream is Laravel's brand new application scaffolding package that replaces Laravel UI. It includes authentication and registration, profiles, two-form authentication, teams, Livewire and Inertia stacks, and so much more.
    10. Upgrade the Laracasts Codebase to Laravel 8

      If you'd like to come along, in this video, I will be upgrading the Laracasts codebase itself from Laravel 7 to Laravel 8. It shouldn't be too difficult, so let's get started!
    11. Laravel Sail

      Laravel Sail is a new CLI for interacting with Laravel's Docker environment. It will provide you with everything you need to get started building applications, without the worry or hassle of manually installing PHP, MySQL, Redis, and more on your local machine. Instead, a single command will do the work for you.

Continue Learning