MyNFT is a decentralized Marketplace that specializes in the purchase of digital assets. Its purpose is to make it much easier and simpler to trade NFTs.
Download:
Run this followed commands:
# Install Composer dependencies (Create the vendor folder)
composer install
# Install Node dependencies (Create the node_modules folder)
npm install
# Create the Storage link
php artisan storage:link
# Run the local server at [localhost:8080](http://127.0.0.1:8000)
php artisan serve
# Run the Vite hot reload (refresh to develop)
npm run dev
# Run the migrations (create the database tables)
php artisan migrate
# Run the migrations & create the seeders data (create the database tables with faker data)
php artisan migrate:refresh --seed
# Generate a new encryption key
php artisan key:generate