All Projects → the-control-group → Voyager

the-control-group / Voyager

Licence: mit
Voyager - The Missing Laravel Admin

Programming Languages

PHP
23972 projects - #3 most used programming language
SCSS
7915 projects
HTML
75241 projects

Projects that are alternatives of or similar to Voyager

Laravel Api Boilerplate
A Boilerplate Project For Laravel API's (NOT MAINTAINED)
Stars: ✭ 113 (-98.95%)
Mutual labels:  hacktoberfest, laravel, laravel-admin
Laravel Adminpanel
A Laravel Admin Panel (Laravel Version : 6.0)
Stars: ✭ 774 (-92.83%)
Mutual labels:  hacktoberfest, laravel, laravel-admin
Platform
A @laravel based RAD platform for back-office applications, admin/user panels, and dashboards.
Stars: ✭ 2,623 (-75.72%)
Mutual labels:  hacktoberfest, laravel, laravel-admin
Larasupport
📦 Adds Laravel Packages Support to Lumen and Vendor Publish Artisan Command.
Stars: ✭ 104 (-99.04%)
Mutual labels:  hacktoberfest, laravel
Yicms
基于laravel5.5 开发的Yicms系统的基础架构
Stars: ✭ 93 (-99.14%)
Mutual labels:  laravel, laravel-admin
Lara Lens
Laravel package for display diagnostic (config, database, http connections...)
Stars: ✭ 96 (-99.11%)
Mutual labels:  hacktoberfest, laravel
Project
⭐️ Antares Project Application Skeleton. This is the very first place you should start. It allows you to create a brand new awesome project in easy few steps.
Stars: ✭ 84 (-99.22%)
Mutual labels:  laravel, laravel-admin
Log Viewer
Log viewer for laravel
Stars: ✭ 108 (-99%)
Mutual labels:  laravel, laravel-admin
Collect
A Collections-only split from Laravel's Illuminate Support
Stars: ✭ 1,433 (-86.73%)
Mutual labels:  hacktoberfest, laravel
Laravel Translations Loader
Webpack loader to import Laravel translation files (PHP or JSON) into your JS bundle as JSON.
Stars: ✭ 109 (-98.99%)
Mutual labels:  hacktoberfest, laravel
Collector Intellij
A PhpStorm plugin for refactoring to collections
Stars: ✭ 114 (-98.94%)
Mutual labels:  hacktoberfest, laravel
Goodwork
Self hosted project management and collaboration tool powered by TALL stack
Stars: ✭ 1,730 (-83.98%)
Mutual labels:  hacktoberfest, laravel
Laravel Totem
Manage Your Laravel Schedule From A Web Dashboard
Stars: ✭ 1,299 (-87.97%)
Mutual labels:  hacktoberfest, laravel
Laravel Package Maker
Get a 📦 skeleton and all other `make` commands from laravel base for package development.
Stars: ✭ 89 (-99.18%)
Mutual labels:  hacktoberfest, laravel
Generators
Laravel File Generators with config and publishable stubs
Stars: ✭ 102 (-99.06%)
Mutual labels:  hacktoberfest, laravel
Dompet
A personal bookkeeping web application, built with Laravel 5.
Stars: ✭ 87 (-99.19%)
Mutual labels:  hacktoberfest, laravel
Laracom
Laravel FREE E-Commerce Software
Stars: ✭ 1,570 (-85.46%)
Mutual labels:  hacktoberfest, laravel
Laravel Mail Editor
MailEclipse ⚡ Laravel Mailable Editor!
Stars: ✭ 1,714 (-84.13%)
Mutual labels:  hacktoberfest, laravel
Awesome Laravel Zero
👋 START HERE! A curated list of Laravel Zero libraries, resources and projects
Stars: ✭ 84 (-99.22%)
Mutual labels:  hacktoberfest, laravel
Voyager Zh
㊙️voyager 的中文汉化版 基于laravel 的管理后台 权限控制,菜单,数据库手脚架,长期更新
Stars: ✭ 84 (-99.22%)
Mutual labels:  laravel, laravel-admin

Total Downloads Latest Stable Version License Awesome Voyager

Voyager - The Missing Laravel Admin

Made with ❤️ by The Control Group

Voyager Screenshot

Website & Documentation: https://voyager.devdojo.com/

Video Tutorial Here: https://voyager.devdojo.com/academy/

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

View the Voyager Cheat Sheet: https://voyager-cheatsheet.ulties.com/


Laravel Admin & BREAD System (Browse, Read, Edit, Add, & Delete), supporting Laravel 6 and newer!

Want to use Laravel 5? Use Voyager 1.3

Installation Steps

1. Require the Package

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

composer require tcg/voyager

2. Add the DB Credentials & APP_URL

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

You will also want to update your website URL inside of the APP_URL variable inside the .env file:

APP_URL=http://localhost:8000

3. Run The Installer

Lastly, we can install voyager. You can do this either with or without dummy data. The dummy data will include 1 admin account (if no users already exists), 1 demo page, 4 demo posts, 2 categories and 7 settings.

To install Voyager without dummy simply run

php artisan voyager:install

If you prefer installing it with dummy run

php artisan voyager:install --with-dummy

And we're all good to go!

Start up a local development server with php artisan serve And, visit http://localhost:8000/admin.

Creating an Admin User

If you did go ahead with the dummy data, a user should have been created for you with the following login credentials:

email: [email protected]
password: password

NOTE: Please note that a dummy user is only created if there are no current users in your database.

If you did not go with the dummy user, you may wish to assign admin privileges to an existing user. This can easily be done by running this command:

php artisan voyager:admin [email protected]

If you did not install the dummy data and you wish to create a new admin user, you can pass the --create flag, like so:

php artisan voyager:admin [email protected] --create

And you will be prompted for the user's name and password.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].