You are on page 1of 4

How can you clear cache in Laravel associated

with the connection to the database?

What is reverse routing?


Where are the pre-built authentication
controllers located?

Which class contains the necessary logic to send


verification links and verify emails?

What is a facade?

What are service providers?

What is a bootstrap process?

What are Laravel Contracts?

What is a Laravel service container?

What is Laravel Cashier?

What is Laravel Dusk?

What is CSRF protection?

V 1.0 © Aptech Limited


Laravel Framework for Web Applications

How can you clear cache in Laravel associated with the


connection to the database?
Use the php artisan cache:clear command to clear cache associated with the
connection to the database.

What is reverse routing?

Reverse routing is generating URLs. They are generated based on route declarations.

Where are the pre-built authentication controllers located?

Laravel’s pre-built authentication controllers are located at the


App\Http\Controllers\Auth namespace.

Which class contains the necessary logic to send verification


links and verify emails?

The Auth\VerificationController class that includes the necessary logic to send


verification links and verify emails.

What is a facade?

Laravel includes many facades. A facade provides a ‘static’ interface to classes. These
classes reside in the application's service container.

What are service providers?

It is a location to configure all Laravel applications.

V 1.0 © Aptech Limited


Beginners Guide to Red Hat Linux

What is a bootstrap process?

The bootstrap process combines the Laravel framework to process a request.

What are Laravel Contracts?

Contracts are a set of interfaces that describe the core services provided by the
framework, such as methods needed for sending e-mail.

What is a Laravel service container?

The Laravel service container manages class dependencies.

What is Laravel Cashier?

Laravel Cashier provides interface to handle the boilerplate subscription billing code. You
can also handle coupons and generate invoice PDFs.

What is Laravel Dusk?

Laravel Dusk helps browser automation and test API.

What is CSRF protection?

In Cross Site Request Forgery (CSRF) attacks, unauthorized commands can be performed.
Laravel provides CSRF protection. It generates a CSRF ‘token’ for each active user session
to verify the authenticated user.

V 1.0 © Aptech Limited

You might also like