コード例 #1
0
 public function show_profil_en($slug)
 {
     $profil = About::whereSlug($slug)->firstOrFail();
     return view('profil.showprofil', compact('profil', 'all_about'));
 }
コード例 #2
0
 public function delete_profil_en($slug)
 {
     $profil = About::whereSlug($slug)->firstOrFail()->delete();
     return Redirect::route('daftar_profil');
 }