Enter backstage, to be in front
Backstage is the CMS for building the modern web. Made with Laravel and Filament.
You can install the package via composer in your (new) Laravel app:
composer require backstage/cms
Note: For now you may have to update composer.json to:
"repositories": {
"laravel-redirects": {
"type": "vcs",
"url": "[email protected]:backstagephp/laravel-redirects.git"
},
"filament-redirects": {
"type": "vcs",
"url": "[email protected]:backstagephp/redirects.git"
},
"backstage/media": {
"type": "vcs",
"url": "[email protected]:backstagephp/media.git"
},
"backstage/fields": {
"type": "vcs",
"url": "[email protected]:backstagephp/fields.git"
},
"backstage": {
"type": "vcs",
"url": "[email protected]:backstagephp/core.git"
}
},
"minimum-stability": "dev",
To get started quickly, use the backstage:install command:
php artisan backstage:install
(Optional) Remove or comment the default Laravel routes:
// routes/web.php
// Route::get('/', function () {
// return view('welcome');
//});
You can publish the migrations with:
php artisan vendor:publish --tag="backstage-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="backstage-config"
Optionally, you can publish the views using
php artisan vendor:publish --tag="backstage-views"
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.