Laravel 5.5 Send Email Example
In this article we will cover an example code of how to send emails in Laravel. Setting up the Mail Driver Laravel provides a API with driver support for SMTP, Mailgun, SpartPost etc. For testing in...
Insights, tutorials, and thoughts on web development and technology.
In this article we will cover an example code of how to send emails in Laravel. Setting up the Mail Driver Laravel provides a API with driver support for SMTP, Mailgun, SpartPost etc. For testing in...
NOTE:Laravel version 5.7 has introduced out of the box Email Verification and account activation. If you are using Laravel version >= 5.7, Please use the inbuilt code for email verification. Tutori...
Often in your application you will come across a requirement where you need to get the details from the database from a particular table with the unique id that is passed into the URL. If you are u...
With the new version of Laravel if you try to migrate your table into the database with php artisan migrate command. You might receive this Exception "Syntex error or access violation : 1071 Specified...
Send Email on Registration with Laravel This article will show you how to send an welcome email to the user just after the registration. Before we continue make sure you have following ready...
Starting today I am taking up a challange of writing a blog post every alternate day. I have been writing technical and programming posts under 5balloons.info from past couple of years and the blog ha...
As a standard practice of creating an CRUD application there are certain actions in like update and delete which requires the method submitted to the server url to be either PUT/PATCH (to modify the r...
This article lays out steps of integrating the Bootstrap based layout to Laravel Project, using Laravel's blade templating engine. Requirements Installed Laravel Project on your Local. Bootst...
Connecting your laravel project to mysql database or any other relational database is fairly easy. Since we have done the installation with XAMPP. It comes along with already installed mysql and p...