Skip to content

Welcome, Backstage

The CMS build for Laravel developers.

Install

See install for installing Backstage in your Laravel project.

Quickstart

Backstage is build on top of Filament.

1. Create a user

bash
php artisan make:filament-user

2. Login

Open /backstage and login.

3. (optional) Create a content type

Types / New type

Create a type with fields.

4. Create content with the new type

Content / New content / [type]

5. Create a blade file

Create a blade file located in /resources/views/types/[type-slug].blade.php.

blade
<!-- resources/views/types/company.blade.php -->
<x-page>
    
    Welcome, {{ $content->field('name') }}.
    
</x-page>