What are Closures in laravel ? Closures are an anonymous function. It can be assigned to a variable or passed…
comments offWhat is the purpose of the Eloquent cursor() method in Laravel ? The cursor method allows you to iterate through…
comments offDefine the Laravel Facades ? Laravel Facades provides a static like interface to classes that are available in the application’s…
comments offDescribe Laravel service container ? One of the most powerful feature of Laravel is its Service Container . It is…
comments offHow do you register a Service Provider? To register a service provider follow below steps Open to config/app.php Find ‘providers’…
comments offWhat are service providers in laravel ? Service providers are the central place of all Laravel application bootstrapping. Our own…
comments offExplain Migrations in Laravel ? How to generate migration ? Laravel Migrations are like version control for our database, allowing…
comments offHow can we change our default database type ? By default, Laravel is configured to use MySQL.In order to change…
comments offWhat are ‘php artisan’ in the command line ‘PHP artisan’ is lists of a few dozen different command options. Which…
comments offHow to turn off CRSF protection for a route in Laravel To turn off or diasble CRSF protection for specific…
comments off