Ejemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $skills = Skill::with('user')->with('status')->public()->get();
     flash($flash_message = isset($skills) ? 'Listing all the skills available on the system' : 'Error in retrieving skills');
     return view('skills.index', compact('skills'));
 }