예제 #1
0
 public function about()
 {
     $title = "About Page";
     $page_active = "about";
     $content = Cms::where('tag', 'about')->where('status', 1)->first();
     return view('pages.about', compact('title', 'page_active', 'content'));
 }