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
- Host: GitHub
- URL: https://github.com/backstagephp/core
- Owner: backstagephp
- License: mit
- Created: 2024-10-10T14:58:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-27T11:27:37.000Z (7 months ago)
- Last Synced: 2025-06-27T12:29:29.874Z (7 months ago)
- Topics: backstage, cms, filament, laravel
- Language: PHP
- Homepage: https://backstagephp.com/
- Size: 6.38 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Backstage CMS

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



[](https://packagist.org/packages/backstagephp/core)
[](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.