Skip to content

asnodj/Platform

 
 

Repository files navigation

Official Documentation

Documentation can be found at Orchid website.

Online Demo

You can view a demo at http://demo.orchid.software

Email: [email protected]

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:

$ composer require orchid/platform

Now add the service provider in config/app.php file:

Service provider to the 'providers' array:

'providers' => [
    // ...
    Orchid\Platform\Providers\FoundationServiceProvider::class,
];

And the Facades Aliases to the 'aliases' array:

'aliases' => [
  // ...
  'Dashboard' =>  Orchid\Platform\Facades\Dashboard::class,
  'Alert' =>  Orchid\Alert\Facades\Alert::class,
  'Active' => Watson\Active\Facades\Active::class,
];

Extend your user model using the Orchid\Core\Models\User as UserOrchid alias:

namespace App;

use Orchid\Platform\Core\Models\User as UserOrchid;

class User extends UserOrchid
{

}

Publish ORCHID's vendor files

php artisan vendor:publish --provider="Orchid\Platform\Providers\FoundationServiceProvider"

Create the notification table

php artisan notifications:table

Run your database migration

php artisan migrate

Create your admin user

php artisan make:admin admin [email protected] password

Add the following to your .env file

APP_INSTALL=true

Usage

To view ORCHID's dashboard go to:

http://your.app/dashboard

and use Email: [email protected] Password: password

Security

If you discover security related issues, please email Alexandr Chernyaev 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

License

The MIT License (MIT). Please see License File for more information.

About

Platform package for Laravel

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 51.1%
  • CSS 18.4%
  • PHP 15.6%
  • HTML 14.9%