Documentation can be found at Orchid website.
You can watch live
Login: admin@admin.com Password: password
Make sure your server meets the following requirements.
- MySQL Server 5.7.8+ or PostgreSQL
- PHP Version 7.0+
Going your project directory on shell and run this command:
$ composer require orchid/cms
Inherit your model App\User
namespace App;
use Orchid\Platform\Core\Models\User as UserOrchid;
class User extends UserOrchid
{
}
Go to url: localhost:8000/dashboard
The graphical installation does not work if the server is started using the artisan serve
command, if you want to use a local server, please go to the public directory and run
php -S localhost:8000
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
The MIT License (MIT). Please see License File for more information.