/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $data['specialdays'] = Specialday::all();
     return View::make('specialdays.index', $data);
 }