public function faculty()
 {
     $bardtrainers = BardTrainer::all();
     return view('bardtrainers.bardtrainer', compact('bardtrainers'));
 }
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $bardtrainers = BardTrainer::all();
     return view('bardtrainers.index', compact('bardtrainers'));
 }