middleware('auth'); } public function test(): View { return view('welcome'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function index(): View { // $tglSekarang = time(); // $students = Student::get(); // foreach ($students as $student) { // $dateDiff = $tglSekarang - $student['registered_at']; // $durasi = floor($dateDiff/(60 * 60 * 24)); // $periode = Periode::first(); // if($durasi > $periode['days']){ // $student->update(['status' => 0]); // } // else{ // $student->update(['status' => 1]); // } // } return view('frontend.home.index'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function contact(): View { return view('frontend.home.contact'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function imprint(): View { return view('frontend.home.imprint'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function intro(): View { return view('frontend.home.intro'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function news(): View { return view('frontend.home.news'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function services(): View { return view('frontend.home.services'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function help(): View { return view('frontend.home.help'); } /** * show page by $page_slug. */ public function showPage($slug): View { // $result = $pages->findBySlug($slug); if (!is_null(Page::query()->where('page_slug', $slug)->firstOrFail())) { $result = Page::query()->where('page_slug', $slug)->firstOrFail(); return view('frontend.pages.index')->withpage($result); } else { throw new GeneralException(trans('exceptions.backend.access.pages.not_found')); } } public function phpInfo() { dd(phpinfo()); } }