How to convert php array to laravel collection object

PHOTO EMBED

Wed May 31 2023 13:41:11 GMT+0000 (Coordinated Universal Time)

Saved by @mvieira

public function index() {
    $arr = [1,3,5,7,9];
    $collection = collect($arr);
    dd($collection);
}
content_copyCOPY

https://advancedwebtuts.com/tutorial/how-to-convert-php-array-to-laravel-collection-object