A place where all members can share their Laravel & PHP tutorials, links, news, packages, etc.

Create New Post Contact Us

Database versioning with the migrations system In Laravel

Until this point, we worked with the Schema class using some simple routes. Quite easy, but it’s not a very good practice. You know: the single responsibility principle is not just a bedtime story.

Also, it’s not just about the code: t

Add Role-based Permissions in Laravel

Entrust is a succinct and flexible way to add Role-based Permissions to Laravel 5.1

Laravel 5 Pagination and AngularJS

codetutorial wrote a tutorial on how to use the paginator of Laravel 5 with AngularJS

Learn how to import data from csv using Eloquent in Laravel

When working with data, there are many different sources and file types that we may encounter. A common type is a CSV, or comma separated value, file. In this recipe, we’ll take a CSV file’s contents and insert them into our database.

Cropping an image with Jcrop in Laravel

Image editing and manipulation can sometimes be a difficult thing to implement in our application. Using Laravel and the Jcrop JavaScript library, we can make the task much simpler

Create an autocomplete text input in Laravel

On our web forms, there may be times when we want to have an autocomplete text field. This can be handy for populating common search terms or product names. Using the jQueryUI Autocomplete library along with Laravel, that becomes an easy task.

Taylor Otwell introduces Laravel Spark at Laracon

Laravel Spark is the new SAAS foundation that Taylor Otwell announced at Laracon 2015.

When you install Laravel Spark, you will have Authentication, Billing, A bootstrapped front-end and dashboard, Billing Management, Teams, etc.

It will be re

Create a To-do List with Ajax in laravel 5.1

In this tutorial, we will be using the Laravel PHP framework and jQuery to build a to-do list with Ajax.

Through out this tutorial, we’ll show you the basics of RESTful controllers, RESTful routing, and Request types. The list of topics cove

Learn how to send emails in Laravel

Laravel’s Mail class extends the popular Swift Mailer package, which makes sending e-mails a breeze. The e-mail templates are loaded in the same way as views, which means you can use the Blade syntax and inject data into your templates:

Learn everything about models in Laravel

The Model is that part of the Model-View-Controller design pattern that we can simply describe as the layer of the design pattern that handles the management of the data, which is received from the corresponding layers and then sent back to those lay