Guides 11791 Published by

Linux Hint published the following Laravel tutorials:

Laravel Resource Controllers
Laravel Route
Laravel Pagination
Laravel Facade
Send Emails in Laravel Using SMTP




Laravel Resource Controllers

A resource controller is used in Laravel to perform CRUD operations easily. It will create all necessary methods inside the controller related to CRUD operations. It handles all HTTP requests for the application and requires a single line of code for CRUD routes. In this article, how to perform CRUD operations in Laravel is explained.

Laravel

Laravel Resource Controllers

Laravel Route

The route is used to create a request URL for the Laravel application. This tutorial covers different types of routing methods and how the get() method can be used for defining the different routes for Laravel projects.

Laravel Route

Laravel Pagination

Pagination is used to display many records at once by dividing the data into multiple pages to make it readable. This tutorial shows you how to apply pagination in Laravel projects.

Laravel Pagination

Laravel Facade

The Laravel service container allows the user to initiate classes by alias. The way to access the Laravel service container is called a facade. This tutorial shows how to create and use Laravel built-in facades.

Laravel Facade

Send Emails in Laravel Using SMTP

Laravel has an email-sending library named SwiftMailer to send an email with an email template. This tutorial shows you how to send a simple email using SMTP.

Send Emails in Laravel Using SMTP