laravel inertiajs admin
1.0.0
I have created this project to start with basic admin panel features like user management with Roles.
Clone the repo locally:
git clone https://github.com/amitm13/laravel-inertiajs-admin laravel-admin
cd laravel-adminInstall PHP dependencies:
composer installInstall NPM dependencies:
npm installBuild assets:
npm run devSetup configuration:
cp .env.example .envGenerate application key:
php artisan key:generateCreate an MySql database. You can also use another database (Sqlite, Postgres), simply update your configuration accordingly.
configure database in .env
DB_DATABASE=inertia_adminRun database migrations:
php artisan migrateRun the dev server (the output will give the address):
php artisan serveYou're ready to go!
Note: as there is no user by default. please register first to use admin panel.