If you have two very similar Models (like shipping address and billing address) and you need to make a copy of one to another, you can use replicate() method and change some properties after that.
Example from the official docs:
$shipping = Address::create([ 'type' => 'shipping', 'line_1' => '123 Example Street', 'city' => 'Victorville', 'state' => 'CA', 'postcode' => '90001',]); $billing = $shipping->replicate()->fill([ 'type' => 'billing']); $billing->save();
Enjoyed This Tip?
Get access to all premium tutorials, video and text courses, and exclusive Laravel resources. Join our community of 10,000+ developers.
Recent Courses
Queues in Laravel 13
18 lessons
1 h 12 min read
[NEW] NativePHP v3: Create Mobile Apps with Laravel
9 lessons
53 min
[NEW] Laravel AI SDK: 6 Practical Examples
9 lessons
1 h 02 min