/product-dashboard

This GitHub repository is linked to my Laravel Nova video series where I setup a Product Analytics Dashboard

Primary LanguagePHP

Product Dashboard [Laravel Nova]

This is the official repository ULTIMATE Laravel Nova Tutorial
• Twitter: @codewithdary
• Instagram: @codewithdary
• TikTok: @codewithdary
• Blog: @codewithdary
• Patreon: @codewithdary

Usage

Setup the repository

git clone git@github.com:codewithdary/product-dashboard.git
cd product-dashboard

Create a auth.json file in the root of your directory where you need to define your Laravel Nova email ans license key

{
    "http-basic": {
        "nova.laravel.com": {
            "username": "",
            "password": ""
        }
    }
}

Then, we need to make sure that we run the following commands:

composer install
cp .env.example .env 
php artisan key:generate
php artisan cache:clear && php artisan config:clear 
php artisan serve