Laravel Pagination Example

The main of this blog is to create simple pagination that will work with a database. For your better understanding, we have divided the program into some parts. let’s assume you have a Laravel application. If you don’t have any application then create a new application and perform further steps into it. Create Model and

Learn More

Laravel Custom Pagination Example

The main of this blog is to create simple custom pagination that will work with a database. For your better understanding, we have divided the program into some parts. let’s assume you have a Laravel application. If you don’t have any application then create a new application and try further steps into it. Create Model

Learn More

Create Custom Route Files in Laravel

If you are working with a large application in Laravel and you have different types of users then you have to create custom route files for user type in your application. for example, if you have user, manager, and admin three types of users then you have different prefixes like “user/“, “admin/“, and “/*” URL

Learn More

Sending Mail in Laravel Using Mailtrap

There are plenty of ways or services to send E-mail in the Laravel application. The mail function is essential for these tasks, to register or notify the users, so it’s native in Laravel and provides a wide range of capabilities like integration for sending mail through multiple drivers like SMTP, Mailtrap, Mailgun, and Amazon SES.

Learn More