/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $records = Tags::latest('id')->paginate(self::perPage); return view('tags.list', ['records' => $records]); }