SyntaxFix
Write A Post
Hire A Developer
Questions
With get() method you get a collection (all data that match the query), try to use first() instead, it return only one element, like this:
get()
first()
$about = Page::where('page', 'about-me')->first();