Laravel 5.6 Mails
Laravel has a clean and straightforward API to send emails. This framework provides ready to use drivers for SMTP, Mailgun, Amazon SES, SparkPost, Php's mail and sendmail functions....
This Laravel series is a step further from Laravel Basics. In this series we discuss important Laravel aspects like Database Migrations, Authentication, Pagination, etc.
Laravel has a clean and straightforward API to send emails. This framework provides ready to use drivers for SMTP, Mailgun, Amazon SES, SparkPost, Php's mail and sendmail functions....
Validation is one of the fundamental elements of any application. Laravel Framework provides several approaches to validate incoming user data. ValidatesRequests Trait is used by Laravel's Base Controller...
One of the best features of Laravel is its Authentication component. Almost everything required for authentication is configured by Laravel which is available in each Laravel application out...
We all know that HTTP driven web applications are stateless in nature. Therefore, sessions play an important role in storing user information across multiple requests. Laravel provides various...
Database tables are usually interrelated. For instance, a blog post may have multiple tags. In any application, database relationships can get as simple or as complicated as one...
We can perform delete operation in Laravel in two ways. Either remove a record from database permanently or delete but keep the record hanging in the database. Confused?...
Laravel provides Eloquent ORM (Object Relational Mapper) which is immensely powerful. Eloquent utilizes Active Records. It is a scenario where an object maps with a table of a...
There are numerous instances where we need a populated database in order to test several operations. Many developers add these data rows manually. But with Laravel framework, you...
Migrations in Laravel work as version control for a database. This feature allows us to modify and share application database schema right from the project files. We can...
Database Query Builder provided by Laravel is very simple but robust and provides a convenient interface to perform database queries. It can be utilized to run database operations...