Blog

Convert Laravel Model to Collection

Laravel

If you want to convert a Laravel model to a collection, you can simply use the collect method.

$page = Page::find(3);

$pageAsCollection = collect($page);