Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1014 Bytes

File metadata and controls

52 lines (30 loc) · 1014 Bytes
title Quick start

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

php artisan make:filament-user

2. Login

Open /backstage and login. If this is your first user you need to make a new site. Create one on /backstage/new.

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.

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