Answers for "Laravel eloquent replicating model"

0

Laravel eloquent replicating model

use App\Models\Address;

$shipping = Address::create([
    'type' => 'shipping',
    'line_1' => '123 Example Street',
    'city' => 'Victorville',
    'state' => 'CA',
    'postcode' => '90001',
]);

$billing = $shipping->replicate()->fill([
    'type' => 'billing'
]);

$billing->save();
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language