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

Create New Post Contact Us

Create a Newsletter platform in laravel

In this tutorial, we will cover an advanced newsletter system, which will use Laravel’s queue and email libraries. After this section, we will learn how to set and fire/trigger queued tasks, and how to parse e-mail templates and send mass e-mai

Understanding polymorphic relationships In laravel

I guess , you are thinking that Eloquent is cool and very powerful.

Well, yes, it is. However, sometimes, hasMany() or belongsToMany() isn’t enough. In some situations during your development flow, you will have to deal with more complex rel

5 ways to secure your laravel application

Before you deploy your application in a hostile environment, full of merciless bots and malicious users, there are a number of security considerations that you must keep in mind. In this article, we are going to cover several common attack vectors fo

Create a CAPTCHA-style spam catcher in laravel

One way to combat “bots” that automatically fill in web forms is by using the CAPTCHA technique. This shows the user an image with some random letters; the user must fill in a text field with those letters. In this tutorial, we will creat

Step by step tutorial for using Laravel Elixir

Tools such as file watchers can run scripts or perform operations every time a file is modified. Additionally, IDEs such as PHPStorm will recognize file extensions and offer to watch the file for changes and allow the developer to perform certain ope

Create a News Aggregation Website with laravel

During this tutorial, we will create a news aggregation site. We will parse multiple feeds, categorize them, activate/deactivate them for our website, and display them on our website using PHP’s SimpleXML extension. The following topics will be

Create an E-Commerce Website with laravel

In this tutorial , we’ll code a simple book store example using Laravel. We’ll also cover Laravel’s built-in authentication, named routes, and database seeding. We’ll also elaborate some rapid development methods that come wit

Prevent Laravel Forge servers losing track of time

I recently ran into an issue where our Laravel Forge servers were falling out of sync with the actual time, some getting up to 5 minutes slow and one even going 7 minutes into the future. These servers had been running for 6 months without a restart,

Create an Image Sharing Website with Laravel

With this tutorial, we are going to create a photo sharing website. First, we are going to create an images table. Then we’ll cover methods to resize and share images.

The following topics are covered in this tutorial:

- Creating a databa

Understanding Design Patterns in Laravel

In this article , we will discuss the design patterns Laravel uses, and how and why are they used, with examples.

The topics that will be discussed in this chapter are as follows:

- Design patterns used in Laravel

- The reasons these pattern