⟩ Tell me how to create a session? How to set a value in session? How to Remove data from a session?
Create session : session_start();
Set value into session : $_SESSION['USER_ID']=1;
Remove data from a session : unset($_SESSION['USER_ID'];
Create session : session_start();
Set value into session : $_SESSION['USER_ID']=1;
Remove data from a session : unset($_SESSION['USER_ID'];
Tell me what are the official packages provided by Laravel?
Do you know what is php artisan. List out some artisan commands?
Do you know what is routing and how, and what are the different ways to write it?
Tell me how can you display HTML with Blade in laravel?
Tell me how To Enable The Query Logging?
Tell us what Are Advantages Of Laravel?
Tell me what Are System Requirement For Laravel 5.0?
Tell us have you used Lumen before?
Tell me how to enable maintenance mode in Laravel 5?
Do you know Laravel Eloquent?