How to work with Database in Laravel ?
Answer / nafees ahmad
Laravel has made processing with database very easy. Laravel currently supports following 4 databases -
1.MySQL
2.Postgres
3.SQLite
4.SQL Server
The query to the database can be fired using raw SQL, the fluent query builder, and the Eloquent ORM.
To understand the all CRUD (Create, Read, Update, Delete) operations with Laravel, we will use simple student management system.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is Terminable Middleware ?
What are the benefits of facades?
What do you know about php artisan? Mention some artisan command.
What is laravel homestead?
How can you update homestead?
What is fillable attribute in a model?
What do you know about csrf token in laravel?
What is the use of fillable in laravel?
What is the use of dd() function?
What is meant by check method ?
Is laravel easier than php?
What are service containers?