Laravel: Using Pagination, Sorting and Filtering with Your Tables
Introduction. In Laravel, when you create websites displaying some data, you almost always need to display tables of results (e.g. Products, Categories, etc). The problem with displaying these tables is that you need to make them sortable and filterable. Plus, you may need to paginate your results since the table may become very big and …