Hanson / voyager

Voyager - The Missing Laravel Admin

Home Page:https://the-control-group.github.io/voyager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Build Status Total Downloads Latest Stable Version License

Voyager - The Missing Laravel Admin

Made with ❤️ by The Control Group

Voyager Screenshot

Website & Documentation: https://the-control-group.github.io/voyager/

Video Demo Here: https://devdojo.com/episode/laravel-admin-package-voyager

Join our Slack chat: https://voyager-slack-invitation.herokuapp.com/


Laravel Admin & BREAD System (Browse, Read, Edit, Add, & Delete), made for Laravel 5.3.

After creating your new Laravel application you can include the Voyager package with the following command:

composer require tcg/voyager

Next make sure to create a new database and add your database credentials to your .env file:

DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

Add the Voyager service provider to the config/app.php file in the providers array:

'providers' => [
    // Laravel Framework Service Providers...
    //...
    
    // Package Service Providers
    TCG\Voyager\VoyagerServiceProvider::class,
    // ...
    
    // Application Service Providers
    // ...
],

Lastly, we can install voyager by running

php artisan voyager:install

Note: If you don't have composer installed and use composer.phar instead, run the following 2 commands:

composer.phar dump-autoload
php artisan db:seed

And we're all good to go!

Start up a local development server with php artisan serve And, visit http://localhost:8000/admin and you can login with the following login credentials:

**email:** admin@admin.com
**password:** password

About

Voyager - The Missing Laravel Admin

https://the-control-group.github.io/voyager

License:MIT License


Languages

Language:PHP 60.5%Language:CSS 33.6%Language:HTML 5.9%