/myNFT

University work on an NFT store using the Laravel framework.

Primary LanguagePHP

MyNFT

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.

Home

desktop-1

desktop-2

Sign Up

desktop

Sign In

desktop

Account

desktop

Gallery

desktop

Shopping Cart

desktop

Admin

desktop

Admin (Add)

desktop

Admin (Edit)

desktop

Components

Navbar

desktop-displayed

Footer

desktop

Dev Setup & Commands

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