After that you can run an artisan command to finalize the installation.
phpartisanhotcoffee:install
The script will ask you if you want to also install the example logic (this includes some example controllers, routes, views and dummy pages for the front-end of your app). Type "yes" or "no" and hit enter to continue.
Step 4: Extend the user model
Edit your User model (usually app/models/User.php) and make the class extend \TaffoVelikoff\HotCoffee\User instead of Authenticatable.
Step 5: Create an admin user
You can now create your first admin user with a simple artisan command:
Step 6: Make sure everything went OK
Use php artisan serve to run PHP's built-in development server. The admin panel should be available on this address (or similar): http://127.0.0.1:8000/admin/login
Login with your admin credential.
👏 That's it!