When creating a web app it usually involves creating a dashboard and a place for the user to see data pertaining to their company. You can create a normal table like below but then you will have to add your own sorting and searching functionalities.
Name | Surname | Account Type |
---|---|---|
Rayne | Logan | Admin |
That is why I like to use Datatables.net they easy to use and have a lot of different add-ons.
Steps on installing the basic Datatables into your Laravel app:
Note: If you have multiple tables on one view make sure that each of them has a different id and that you have called the function in your script tags for each table.
Addons that I use frequently:
Happy coding!