Answer Posted / suresh kumar
we need to perform CRUD (Create, Read, Update, Delete) operations, Laravel makes this job easy for us.
Just create a controller and Laravel will automatically provide all the methods for the CRUD operations.
You can also register a single route for all the methods in routes.php file.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
In laravel, what is fillable attribute in a model?
Tell me how to set database connection in laravel?
What do you know about laravel contracts?
Explain the controllers in laravel?
What is singleton in laravel?
What are service providers in laravel?
Is laravel good for api?
How will you explain guarded attribute in a laravel model?
Please explain what are the main differences between laravel 4 and laravel 5.x?
What is laravel?
What are the difference between latest() and oldest() in laravel?
What is seed in laravel?
Explain how to get current url in laravel?
What is the boot method?
How can you write your own service provider in laravel.