A place where all members can share their Laravel & PHP tutorials, links, news, packages, etc.
Create New Post
Contact Us
In this tutorial, we’ll code a simple personal blog with Laravel. We’ll also cover Laravel’s built-in authentication, paginate mechanism, and named routes. We’ll elaborate some rapid development methods, which come with Larave
To set up a master/slave database, perform the following steps from the command line.
The first step is to determine which address the MySQL server is bound to. To do this, locate the line of the MySQL configuration file that contains the bind-add
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
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
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
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
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
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
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
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,