Servers for Artisans: The Next Generation

Servers for Artisans: The Next Generation

"But what good is an awesome app if you can't share it with the world"?

During Laracon NYC 2014, Taylor Otwell, the creator of Laravel, announced both Laravel Homestead and Laravel Forge, instantly simplifying the entire process of building Laravel applications - from first download to final deployment.

Taylor Otwell introducing Laravel Forge

Since then, Laravel and Forge have grown tremendously. Today, Laravel 8 is installed over one hundred thousand times daily, and Laravel Forge is managing over four hundred thousand sites, most of which serve Laravel applications.

Forge is the product that supports the entire Laravel open-source ecosystem. Developers around the world love using Forge for its simplicity and convenience. What better way to celebrate its growth over the last 7 years than by giving it a fresh coat of paint?

Laravel Forge

We're extremely proud to announce this complete visual refresh of Forge. In what became a massive undertaking, we've re-built our entire Forge frontend from the ground up using a modern development stack. Gone are jQuery, Bootstrap, Moment.js and most of Lodash, and in are Inertia.js and Tailwind CSS.

The result is a modern, breathing design that will feel fresh, yet instantly familiar. If that wasn't enough, Forge is now twice as fast, even when you're managing over 500 servers.

An example of a server's Meta tab

While this new design is neat, we've also equiped Forge with brand new keyboard shortcuts, allowing power users to get around even faster using nothing but their keyboard.

Keyboard shortcuts, viewable by pressing '?' in Forge

Today's celebration represents more than just a redesign. It represents the next generation of Laravel Forge and our continued dedication to making it the best version of itself that it can be. We hope you're as excited as we are!

Keep reading

General April 4, 2024

Encryption and the In-between

Last year, we introduced a simple but surprisingly useful feature to Laravel Forge: the ability to add notes to servers. While checking the uptake of this feature, we noticed that customers were often storing sensitive data in the field. We hadn’t designed notes to store sensitive information, so we found ourselves in a situation where we now needed to encrypt existing unencrypted data, while also allowing for new data to be inserted as encrypted data - at the same time, the dashboard needed to be able to show the notes correctly whether they had been encrypted or not. Our migration process looked like this: 1. Run a command that encrypts all existing unencrypted server notes. 2. Update our model to cast the `notes` field, encrypting or decrypting as required. To do this, we leaned on [Laravel’s custom casts](https://laravel.com/docs/11.x/eloquent-mutators#custom-casts) feature to handle this “sometimes encrypted” data. We created a new cast `SometimesEncrypted` that allowed us to gracefully decrypt the encrypted notes, or simply return the plaintext version which may have been available during the migration: ```php

James Brooks

Stay connected with the latest Laravel news