Files
Kelly 32fd2b0ab8 feat: migrate product edit page to new top header layout
- 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>
2025-11-05 23:41:37 -07:00
..

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

  1. 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

  1. Check if PHP and composer are installed correctly by running the following commands in your terminal:
php -v
composer -v
  1. Install Dependencies

Install PHP dependencies:

composer install

Install And Node dependencies:

npm install
  1. 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
  1. Generate an application key
php artisan key:generate
  1. 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.