Example #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $tags = Tag::paginate(20);
     return view("dashboard.tags.index", compact("tags"));
 }