public function listArt() { $page_title = "List Articles"; $title = "Admin - Articles"; $art = m_art::all(); return view('backend.listart', ['title' => $title, 'page_title' => $page_title, 'art' => $art]); }
/** * Show the profile for the given user. * * @param int $id * @return Response */ public function listDashboard() { $page_title = "Dashboard"; $title = "Admin - Dashboard"; $m_articles = m_articles::all(); $count_art = number_format($m_articles->count()); $m_user = m_user::all(); $count_user = number_format($m_user->count()); $m_gallery = m_gallery::all(); $count_gallery = number_format($m_gallery->count()); return view('backend.formdashboard', ['title' => $title, 'page_title' => $page_title, 'count_art' => $count_art, 'count_user' => $count_user, 'count_gallery' => $count_gallery]); }