/**
  * Display the recent shirts..
  *
  * @return Response
  */
 public function recent()
 {
     $shirts = Shirt::recent(4);
     return view('welcome', compact('shirts'));
 }