News

v5.8.10 is Now Released Featuring a New Replicating Model Event

Published
v5.8.10 is Now Released Featuring a New Replicating Model Event image

Release updates

Never miss a Laravel release

Get an email whenever a new Laravel release lands.

The Laravel team just released v5.8.10, and this release includes two new features. A replicating model event and NotificationFake is now macroable.

If you are not familiar with Model Events, read our tutorial on getting started with Laravel Model Events and see how these can be beneficial in your codebase.

The replicating event is added for when you want to make a copy of a model. For example:

$post = Post::find(1);
$newPost = $post->replicate();
$newPost->save();

This grabs the first post, calls replicate and assigns it to a $newPost variable, then finally saves it as a new record in the database. The replicating event will fire as part of this flow. Check out the pull request for more details and to see how this was implemented.

v5.8.10 Changelog

Added

  • Added replicating model event (#28077)
  • Make NotificationFake macroable (#28091)

Fixed

  • Exclude non-existing directories from event discovery (#28098)

Changed

  • Sorting of events in event:list command (3437751)
  • Removed path hint in compiled view (33ce7bb)
Eric L. Barnes photo

Eric is the creator of Laravel News and has been covering Laravel since 2012.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
PayZephyr: One Payment API for Stripe, Paystack, and PayPal image

PayZephyr: One Payment API for Stripe, Paystack, and PayPal

Read article
Bifrost Turns One With AI Builds and New Workflows image

Bifrost Turns One With AI Builds and New Workflows

Read article
Preview Blade Templates in macOS Finder with Quick Blade image

Preview Blade Templates in macOS Finder with Quick Blade

Read article
Artisan Debugging Commands in Laravel Telescope 5.24.0 image

Artisan Debugging Commands in Laravel Telescope 5.24.0

Read article
Queue totalSize() and JobInterrupted Event in Laravel 13.31 image

Queue totalSize() and JobInterrupted Event in Laravel 13.31

Read article
Find Unexpected Test Inputs with Fuzz for Pest image

Find Unexpected Test Inputs with Fuzz for Pest

Read article