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

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article