Laravel Tutorials

Convert Any Value to Collections with Laravel's Collection::wrap Method

Published
Convert Any Value to Collections with Laravel's Collection::wrap Method image

Laravel's Collection::wrap method provides seamless conversion of various data types into collections, ensuring consistent collection handling regardless of input format.

The wrap method handles different value types gracefully:

use Illuminate\Support\Collection;
 
// Wrap a single value
$collection = Collection::wrap('Alice Smith');
// Result: ['Alice Smith']
 
// Wrap an array
$collection = Collection::wrap(['Alice Smith']);
// Result: ['Alice Smith']
 
// Wrap an existing collection
$collection = Collection::wrap(collect('Alice Smith'));
// Result: ['Alice Smith']

Here's how you might use it in an email notification service:

class NotificationService
{
public function sendEmails($recipients, $message)
{
return Collection::wrap($recipients)
->map(fn($email) => $this->validateEmail($email))
->filter()
->each(fn($email) => $this->dispatch($email, $message));
}
 
public function assignCategories($product, $categories)
{
$currentCategories = $product->categories;
$newCategories = Collection::wrap($categories)
->unique()
->diff($currentCategories);
 
$product->categories()->sync($newCategories);
 
return $product;
}
 
public function formatNotifications($notifications)
{
return Collection::wrap($notifications)
->map(fn($notification) => [
'id' => $notification->id,
'message' => $notification->content,
'timestamp' => $notification->created_at
])
->sortByDesc('timestamp');
}
}
 
class AlertController extends Controller
{
public function broadcast(Request $request, NotificationService $service)
{
$alerts = AlertService::latest($request->limit);
return $service->formatNotifications($alerts);
}
}

The wrap method ensures consistent collection handling regardless of input type, making your code more reliable and flexible.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
Laravel Rulebook: Business Rules That Change by Date image

Laravel Rulebook: Business Rules That Change by Date

Read article
Taylor disabled GitHub Issues on most Laravel open-source packages. image

Taylor disabled GitHub Issues on most Laravel open-source packages.

Read article
Exclude Vendor and Default Commands in `php artisan dev` image

Exclude Vendor and Default Commands in `php artisan dev`

Read article
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article