Blog

Insights, tutorials, and thoughts on web development and technology.

Laravel 5.5 Send Email Example

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...

Dec 11, 2017 · Tushar
Route Model Binding in Laravel 5.5

Route Model Binding in Laravel 5.5

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...

Dec 06, 2017 · Tushar
A blog post every alternate day.

A blog post every alternate day.

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...

Nov 30, 2017 · Tushar
How to use PUT/PATCH and DELETE method in Laravel 5.5

How to use PUT/PATCH and DELETE method in Laravel 5.5

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...

Nov 13, 2017 · Tushar
Connecting your Project to Database in Laravel

Connecting your Project to Database in Laravel

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...

Oct 23, 2017 · Tushar