Do as Directed 1) Deleting records using _______ can be restored. 2) Laravel _____ provides full text search. 3) _____ is used to insert dummy records to model. 4) Views in Laravel are stored as ______ files. 5) What is difference between {{$username}} and {!!username!!}? 6) Migrations can be used to create tables from Laravel. (True\False) 7) Laravel does not support caching.(True\False)
[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]Write short note on control structures available in blade? Write code snippet for any one.
[7 marks]How can we create custom blade directives in laravel? Explain with code snippet.
[7 marks]What is blade directive? Explain : @extends , @parent , @section.
[7 marks]How can we implement Authentication in Laravel? Also explain how it works?
[7 marks]What is database migration? What is its usage? Explain with example? Also list the different options to use with migration command.
[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.
[3 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 Eloquent? What is advantage of Eloquent? Explain accessing and inserting records using Eloquent with code snippet.
[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 it can be created and implemented? Explain with proper code snippet.
[7 marks]What are accessors and mutators? Explain with code snippets.
[7 marks]How can we access session in Laravel? Explain the mechanism of writing and reading data from session.
[7 marks]What are different type of relationships we can define on models? Explain with proper code snippet.
[7 marks]Explain the mechanism of handling cookies in Laravel. Also show how can we read and write values to it.
[7 marks]