artisticre wrote a reply+100 XP
10h ago
artisticre started a new conversation+100 XP
11h ago
artisticre started a new conversation+100 XP
4mos ago
Controller
public function ourHistory()
{
$metaTitle = 'Title';
$metaDescription = 'descriptio';
$history = OurHistory::latest()->get();
return view('pages.our-history',compact('history','metaTitle','metaDescription'));
}
blade
{{$history}} shows all details in the database but if I change to {{$history->pagetitle}} (one of the columns in the database) says Property [pagetitle] does not exist on this collection instance.