Skip to content

AppStackTop/voyager

 
 

Repository files navigation

Voyager - The Missing Laravel Admin

Voyager Screenshot

Video Demo Here: https://www.youtube.com/watch?v=_gp4E7tC-Vs

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

Voyager Logo

After creating your new Laravel application you can include the Voyager package with the folowing 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 as well as the Image Intervention service provider to the config/app.php file in the 'providers' => [ array:

TCG\Voyager\VoyagerServiceProvider::class,
Intervention\Image\ImageServiceProvider::class,

Lastly, we can install voyager by running

php artisan voyager:install

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

Packages

No packages published

Languages

  • PHP 58.6%
  • CSS 35.3%
  • HTML 6.1%