An open API service indexing awesome lists of open source software.

https://github.com/backstagephp/core

CMS made with Laravel & Filament. Will be replaced by `cms`. See documentation at: https://docs.backstagephp.com
https://github.com/backstagephp/core

backstage cms filament laravel

Last synced: 7 months ago
JSON representation

CMS made with Laravel & Filament. Will be replaced by `cms`. See documentation at: https://docs.backstagephp.com

Awesome Lists containing this project

README

          

# Backstage CMS

![Backstage](/docs/backstage-logo-groen-light.jpg)

## CMS done the Laravel way
*Enter backstage, to be in front*

![Test](https://github.com/backstagephp/core/actions/workflows/run-tests.yml/badge.svg)
![Fresh Laravel install](https://github.com/backstagephp/core/actions/workflows/setup-in-laravel.yml/badge.svg)
![PHPStan](https://github.com/backstagephp/core/actions/workflows/phpstan.yml/badge.svg)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/backstagephp/core.svg?style=flat-square)](https://packagist.org/packages/backstagephp/core)
[![Total Downloads](https://img.shields.io/packagist/dt/backstagephp/core.svg?style=flat-square)](https://packagist.org/packages/backstagephp/core)

Backstage is the CMS for building the modern web. Made with Laravel and Filament.

## Installation

You can install the package via composer in your (new) [Laravel app](https://laravel.com/docs/11.x#creating-a-laravel-project):

```bash
composer require backstage/cms
```

Note: For now you may have to update composer.json to:
```json
"repositories": {
"laravel-redirects": {
"type": "vcs",
"url": "git@github.com:backstagephp/laravel-redirects.git"
},
"filament-redirects": {
"type": "vcs",
"url": "git@github.com:backstagephp/redirects.git"
},
"backstage/media": {
"type": "vcs",
"url": "git@github.com:backstagephp/media.git"
},
"backstage/fields": {
"type": "vcs",
"url": "git@github.com:backstagephp/fields.git"
},
"backstage": {
"type": "vcs",
"url": "git@github.com:backstagephp/core.git"
}
},
"minimum-stability": "dev",
```

To get started quickly, use the backstage:install command:

```bash
php artisan backstage:install
```

(Optional) Remove or comment the default Laravel routes:
```php
// routes/web.php

// Route::get('/', function () {
// return view('welcome');
//});
```

### Advanced setup

You can publish the migrations with:

```bash
php artisan vendor:publish --tag="backstage-migrations"
php artisan migrate
```

You can publish the config file with:

```bash
php artisan vendor:publish --tag="backstage-config"
```

Optionally, you can publish the views using

```bash
php artisan vendor:publish --tag="backstage-views"
```

## Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Contributing

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

## Security Vulnerabilities

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

## Credits

- [Mark van Eijk](https://github.com/markvaneijk)
- [Bas van Dinther](https://github.com/baspa)
- [Mathieu de Ruiter](https://github.com/casmo)
- [All Contributors](../../contributors)

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.