What are the operations perfom while Connecting the Database ?
Answer Posted / rishabh khanna
Insert Records : We can insert the record using the DB facade with insert method.
Retrieve Records : After configuring the database, we can retrieve the records using the DB facade with select method.
Update Records :We can update the records using the DB facade with update method.
Delete Records : We can delete the record using the DB facade with the delete method.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is csrf token in laravel?
Is laravel secure?
What is url in laravel?
Explain the concept of routing in laravel.
Explain what are laravel facades?
Is laravel a cms?
What do you understand by database migrations in laravel? How can we use it?
How to Sharing Data with all Views ?
Explain to listeners.
Explain dependency injection?
Where is route in laravel?
What is a laravel controller?
How to do environment configuration in laravel.
How do I populate my database with sample data?
What is database migration? And how to use it to add insert initial data to database?