This is a tutorial for building a CRUD SPA using Vue.js and GraphQL. It is for any budding frontend developer who would like to connect their Vue.js SPA user interface by consuming GraphQL API backend for an end-to-end Create, Read, Update and Delete (CRUD) Functionality. Through the tutorial, they will be able to learn how to use Apollo client and integrate it with Vue.js to send data requests and make changes to an application....
In modern web development, developers tend to build upon data-driven systems whenever the need to import or export data arises, while analyzing or reporting on it. In doing so, most applications use CSV or Excel files alongside the database when dealing with bulk data, since this is clearly more efficient than entering data, one entry at a time.In this post, I demonstrate how to import and export bulk Excel file data into and from a Laravel application using the PhpSpreadsheet library...
Sorting - ordering a list of data items in a pre-defined sequence Sorting algorithms are a set of instructions that take an array or list as an input and arrange the items into a particular order. Sorts are most commonly in numerical or a form of alphabetical (called lexicographical) order, and can be in ascending (A-Z, 0-9) or descending (Z-A, 9-0) order...