$collection = collect(['name' => 'Desk', 'price' => 200]);
$collection->toArray();
/*
[
['name' => 'Desk', 'price' => 200],
]
*/
$collection->toArray();
use AppModelsUser;
$user = User::with('roles')->first();
return $user->toArray();