I am beginner. I make my project in PHP and Laravel 8.
I have this $array:
array:1 [▼
"attributes" => array:37 [▼
"id" => 1
"hash" => "19f149b6-f7e2-4d61-b3c5-d46ebc92f681"
"hidden_carrier_data" => 0
"delivery_name_surname" => null
"delivery_signature_binary" => null
"disable_change_status_driver" => 0
]
]
I need add OLD to this array:
array:1 [▼
"old" => array:0
"attributes" => array:37 [▼
"id" => 1
"hash" => "19f149b6-f7e2-4d61-b3c5-d46ebc92f681"
"hidden_carrier_data" => 0
"delivery_name_surname" => null
"delivery_signature_binary" => null
"disable_change_status_driver" => 0
]
]
How can I make it?
Please help me
My Answer:
You can achieve this by simply adding the "old" key to your existing array. Here's how you can do it:
php
$array['old'] = [];
This will add an empty array under the key "old" in your existing array. So your final array will look like this:
php
array:1 [▼
"attributes" => array:37 [▼
"id" => 1
"hash" => "19f149b6-f7e2-4d61-b3c5-d46ebc92f681"
"hidden_carrier_data" => 0
"delivery_name_surname" => null
"delivery_signature_binary" => null
"disable_change_status_driver" => 0
]
"old" => []
]
I hope this helps! Let me know if you have any other questions.
Rate this post
4 of 5 based on 3515 votesComments