Example #1
0
 public static function getServices()
 {
     if (Auth::check()) {
         return \View::make('layouts.default')->with('title', 'Services')->with('services', \App\Models\Service::showServices());
     } else {
         return Redirect::route('home')->with('message', 'You are not logged in!');
     }
 }