/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     $shirt = Shirt::findOrFail($id);
     return view('shirts.shirt', compact('shirt'));
 }