/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $championship = Championship::findOrFail($id);
     $championship->delete();
     return redirect()->route('championships.index')->with('message', 'Item deleted successfully.');
 }