Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Xron's avatar
Level 1

Best method to manage tables of data.

Hi I'm building an application where I will have a paginated table of information. I want to be able to instantly search this table for specific records, without reloading the page, as well as possibly being able to delete and edit records.

My question is, whats the best approach with Laravel 5.5 to complete this?

  1. Should I use Datatables?

  2. Should I just write it myself in jQuery? Seems a bit old and clunky doing ajax calls based on each keystroke in a search field?

  3. Should I look into VueJS (I haven't used it yet only read about it) would this be the best fit?

  4. A package maybe type ahead or something similar to allow easier ux when searching huge amounts of data?

Using Laravel 5.5 how would you create a table of data and manage crud/bread functionality?

0 likes
4 replies
SyedAbuthahir's avatar
  1. If you are familiar with jquery datatables then you can go with jquery datatables.
  2. Don't think to reinvent the datatable search functionality that's complex to handle with large amounts of data.
  3. if you know vue js and you are well in component communication then try to implement a basic search it's fun to learn to easy to handling.

Please or to participate in this conversation.