What is meant by CRUD and explain each of it Operations ?
Answer / Abhay Pratap Singh
CRUD stands for Create, Read, Update, Delete, which are the four basic database operations. In Laravel, these operations are used to manipulate data stored in a database.n- Create: Inserting new records into the database.n- Read: Retrieving existing records from the database.n- Update: Modifying existing records in the database.n- Delete: Removing records from the database.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is query builder in laravel?
How to use aggregate functions in laravel query?
What is an observer in laravel?
What is url helper?
How to check request is ajax or not?
What is ajax in laravel?
What is Laravel - File Uploading ?
explain how to add a middleware in route group?
How to check an input value is present or not in laravel?
How to generate it on homestead?
Is laravel backend?
How to create migrations in laravel? Explain step by steps.