News

Fjord: Open-Source Content Administration

Published
Fjord: Open-Source Content Administration image

Fjord is an open-source content administration package for Laravel that helps you build administration interfaces to maintain your application data:

[Fjord] provides an intuitive interface and the tools needed to manage your project’s Users, Models, and free Forms for Pages, Settings, etc.

Here are the main features, according to the project’s readme:

  • Code Driven Configuration
  • Using Laravel Standards
  • Extendable via Vue Components
  • Form Fields for Models
  • User Management
  • Role And Permission Management
  • Media Management
  • Translatable
  • Headless

You can build editable models around these features, which are then managed via an admin panel and customizable:

Here’s an example of an editable form model you can use to generate the code needed to manage the data, which is party of the CRUD configuration for a given model:

$form->image('profile_image')
->maxFiles(1)
->title('Profile Image')
->crop(3 / 4)
->width(4);
 
$form->group(function ($col) {
$col->input('name')
->title('Name');
 
$col->relation('department')
->title('Department');
})->width(2 / 3);

Check out an example CRUD configuration in the playground demo code for an example of the code configuration you will find for a model using this project.

Learn More

Check out the Fjord documentation to learn how to get started and use Fjord with existing Laravel applications. You can try it out with the Fjord Playground, a working demo of a frontend, and the administration side of this project. Finally, you can find the playground source code and aw-studio/fjord on GitHub.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article