Answers for "laravel array collect"

PHP
0

create collection in laravel from array

$collection = collect([
    (object) [
        'website' => 'twitter',
        'url' => 'twitter.com'
    ],
    (object) [
        'website' => 'google',
        'url' => 'google.com'
    ]
]);
Posted by: Guest on June-01-2021
0

collection methods laravel

$collection->each(function ($item, $key) {
    hj
});
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language