Answers for "collect make to string to array laravel"

PHP
4

laravel collection toArray

$collection = collect(['name' => 'Desk', 'price' => 200]);

$collection->toArray();

/*
    [
        ['name' => 'Desk', 'price' => 200],
    ]
*/
Posted by: Guest on July-24-2021
0

string to array in laravel

$explode_id = json_decode($request->data, true);
Posted by: Guest on October-24-2020

Browse Popular Code Answers by Language