Can I use count($posts) in Laravel to retrieve the number of elements in a collection, and how does it differ from $posts->count()?
count($posts)
$posts->count()
Thank