| title | Install |
|---|
The CMS build for Laravel developers.
You can install backstage in any (new) Laravel project or start from scratch. The easiest way to start is install our Backstage Installer.
composer global require backstage/installerAfter that you can use the backstage commando to make a new site.
backstage new my-sitelaravel new my-websitecomposer require backstage/cmsNote: For now you may have to update composer.json to:
"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",php artisan backstage:install// routes/web.php
// Route::get('/', function () {
// return view('welcome');
//});You can publish the migrations with:
php artisan vendor:publish --tag="backstage-migrations"
php artisan migrateYou can publish the config file with:
php artisan vendor:publish --tag="backstage-config"