- Replace sidebar layout with top header design - Add product image thumbnail, badges (Active/Featured), and action buttons - Implement real-time badge toggling with inline JavaScript - Add one-active-product-per-brand validation with force-activate option - Standardize checkbox styling with DaisyUI components - Update terminology from "Default" to "Primary" for images - Add new models: ProductLine, ProductPackaging, Unit - Add product line management and image sorting - Add styling rules to CLAUDE.md for consistency 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Nexus - Client & Admin Dashboard
Package
Thank you for purchasing Nexus Admin. I hope it's going to be helpful for you. Please share your feedback by filling out the form
Please refer online documentation for full details
Upgrading Plan
To upgrade your plan, send us your order ID to pouya@daisyui.com. We will then provide you with a discount code so you won't have to pay the full price.
How to run
- Install PHP, Composer and Laravel Installer according to the official Laravel documentation.
If you're on Windows or MacOS, Laravel Herd is an easy way to run and manage PHP:
https://laravel.com/docs/12.x/installation#installation-using-herd
- Check if PHP and composer are installed correctly by running the following commands in your terminal:
php -v
composer -v
- Install Dependencies
Install PHP dependencies:
composer install
Install And Node dependencies:
npm install
- Copy the .env.example file to .env and configure your environment variables as needed (APP_NAME, APP_URL, etc.)
cp .env.example .env
# On Windows, use:
copy .env.example .env
- Generate an application key
php artisan key:generate
- Start the development server
php artisan serve
And on another terminal window, start the Vite development server:
npm run dev
Open your browser and navigate to http://localhost:8000 to see the application running.