, (*1)
, (*2)
Voyager - The Missing Laravel Admin
Made with ❤️ by The Control Group, (*3)
, (*4)
Website & Documentation: https://laravelvoyager.com, (*5)
Video Tutorial Here: https://laravelvoyager.com/academy/, (*6)
Join our Slack chat: https://voyager-slack-invitation.herokuapp.com/, (*7)
View the Voyager Cheat Sheet: https://voyager-cheatsheet.ulties.com/, (*8)
, (*9)
Laravel Admin & BREAD System (Browse, Read, Edit, Add, & Delete) & Blog, supporting Laravel 5.4 and newer!
Build with Voyager Admin Package & ready update if voyager update, (*10)
Installation Steps
1. Require the Package
After creating your new Laravel application you can include the Voyager package with the following command:, (*11)
composer require ken/laravel-voyager-blog
2. Add the DB Credentials & APP_URL
Next make sure to create a new database and add your database credentials to your .env file:, (*12)
DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
LITEPIE_PREFIX=your/dashboard
LITEPIE_NAME=litepie
LITEPIE_APP_NAME=litepie
LITEPIE_DESCRIPTION="Description Your App"
LITEPIE_BUILDING="Jakarta, Indonesia"
You will also want to update your website URL inside of the APP_URL variable inside the .env file:, (*13)
APP_URL=http://localhost:8000
Only if you are on Laravel 5.4 will you need to Add the Service Provider., (*14)
and adding, (*15)
Ken\Blog\LitepieServiceProvider::class,
3. Automaticly Install Voyager
php artisan litepieweb:install
open config/voyager.php and change like this, (*16)
'additional_css' => [
'vendor/litepie/css/custom.css',
],
'additional_js' => [
'vendor/litepie/js/tinymce.min.js',
],
Troubleshooting: Specified key was too long error. If you see this error message you have an outdated version of MySQL, use the following solution: https://laravel-news.com/laravel-5-4-key-too-long-error, (*17)
And we're all good to go!, (*18)
Start up a local development server with php artisan serve And, visit http://localhost:8000/your/dashboard for akses admin page, (*19)
Thanks to the control group, (*20)