# Platform **Repository Path**: mirrors_opencollective/Platform ## Basic Information - **Project Name**: Platform - **Description**: Platform package for Laravel - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

#

## Official Documentation Documentation can be found at [Orchid website](http://orchid.software). ## Online Demo You can view a demo at [http://demo.orchid.software](http://demo.orchid.software) **Email**: admin@admin.com **Password**: password ## System requirements Make sure your server meets the following requirements. - Apache 2.2+ or nginx - MySQL Server 5.7.8+ or PostgreSQL - PHP Version 7.0+ ## Installation Firstly, download the Laravel installer using Composer: ```php $ composer require orchid/platform ``` Extend your user model using the `Orchid\Core\Models\User as UserOrchid` alias: ```php namespace App; use Orchid\Platform\Core\Models\User as UserOrchid; class User extends UserOrchid { } ``` Publish ORCHID's vendor files ```php php artisan vendor:publish --provider="Orchid\Platform\Providers\FoundationServiceProvider" ``` Create the notification table ```php php artisan notifications:table ``` Run your database migration ```php php artisan migrate ``` Create your admin user ```php php artisan make:admin admin admin@admin.com password ``` Add the following to your `.env` file ```php APP_INSTALL=true ``` #### Usage To view ORCHID's dashboard go to: ```php http://your.app/dashboard ``` and use **Email**: admin@admin.com **Password**: password ## Security If you discover security related issues, please email [Alexandr Chernyaev](mailto:bliz48rus@gmail.com) instead of using the issue tracker. ## Contributing 1. Fork it! 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am 'Add some feature'` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request :D ## Credits - [Alexandr Chernyaev](https://github.com/tabuna) - [All Contributors](../../contributors) ## License The MIT License (MIT). Please see [License File](LICENSE) for more information.