Laravel

PHP Laravel Framework Tutorials and Examples

PHP Laravel Framework Tutorials and Examples

Laravel Tutorials PHP Laravel Framework makes it easier to build PHP MVC web applications. These PHP Laravel Framework tutorials will help you understand and implement basic and complex functionality...

Dec 15, 2017 · Tushar
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
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