Jul 23, 2021
A stored procedure is a set of SQL statements that are stored in a relational database management system after compilation so that it can be reused and shared by multiple programs. Read it hereLink to all Laravel resources
Jul 23, 2021
Laravel comes with Laravel Jetstream which provides login, registration, email verification, two-factor authentication, session management, API support via Laravel Sanctum, and optional team management. Jetstream is designed using Tailwind CSS and offers your choice of Livewire or Inertia scaffolding. Read the full article hereLink to all Laravel... more
Jul 23, 2021
REST is an acronym for REpresentational State Transfer. This term was coined by Roy Fielding in 2000. It is an architecture style for designing loosely coupled applications over HTTP, that is often used in the development of web services. Read it hereLink to all Laravel... more
Jul 23, 2021
The backbone of any relational database is a database relationship. Once you have defined tables, you can relate the data held in different tables. Read the full article hereLink to all Laravel resources
Jul 23, 2021
Laravel comes with in-built support to seed test data into a database. There are a few steps you should follow to successfully insert test data into the database. Read it hereLink to all Laravel resources