Answer the following questions. 1. How to know Laravel version? 2. What are pros and cons of using Laravel Framework? 3. What is make method? 4. What is database migration? How to create migration via artisan? 5. What is composer? 6. Define @include? 7. Please write some additional where Clauses in Laravel?
[7 marks]What is an artisan? List artisan commands available in Laravel? Also Explain how can we create our own artisan commands in Laravel?
[7 marks]Explain String Helpers, Pluralization, and Localization in Laravel with appropriate example.
[7 marks]What is blade directive? Explain : @extends , @parent , @section.
[7 marks]What is pagination? How can we manually create paginators? Also write code snippet to paginate database results.
[7 marks]Explain following 1) Form method spoofing. 2) CSRF Protection.
[7 marks]How can we implement Authentication in Laravel? Also explain how it works?
[7 marks]Explain the life cycle of Laravel Request object? How can we access it? Also explain mechanism to read uploaded files from Laravel.
[7 marks]What is Response object in Laravel? How can we send response from Laravel? Also explain different methods to send file as response to browser.
[7 marks]What is Middleware? How to Creating Custom Middleware and Binding Middleware? How to Passing Parameters to Middleware.
[7 marks]Explain Controller Organization and JSON Returns with Example.
[7 marks]What are accessors and mutators? Explain with code snippets.
[7 marks]What are different type of relationships we can define on models? Explain with proper code snippet.
[7 marks]How many types of Notifications.? List out of Notifications. And Explain any four Notifications with Example.
[7 marks]Explain Laravel’s mail functionality. what is Basic “classic” mail syntax? What is Basic “Mailable” Mail Usage with Example.
[7 marks]How can we access session in Laravel? Explain the mechanism of writing and reading data from session.
[7 marks]