| title | Quick start |
|---|
The CMS build for Laravel developers.
See install for installing Backstage in your Laravel project.
Backstage is build on top of Filament.
php artisan make:filament-userOpen /backstage and login. If this is your first user you need to make a new site. Create one on /backstage/new.
Types / New type
Content / New content / [type]
Create a blade file located in /resources/views/types/[type-slug].blade.php.
<!-- resources/views/types/company.blade.php -->
<x-page>
Welcome, {{ $content->field('name') }}.
</x-page>