https://github.com/rubenchirino/mynft
University work on an NFT store using the Laravel framework.
https://github.com/rubenchirino/mynft
composer ecommerce laravel mysql php
Last synced: 4 months ago
JSON representation
University work on an NFT store using the Laravel framework.
- Host: GitHub
- URL: https://github.com/rubenchirino/mynft
- Owner: RubenChirino
- Created: 2022-10-30T21:57:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-05T23:55:12.000Z (almost 2 years ago)
- Last Synced: 2025-01-30T16:59:36.782Z (6 months ago)
- Topics: composer, ecommerce, laravel, mysql, php
- Language: PHP
- Homepage: https://my-nft-inky.vercel.app
- Size: 3.63 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 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

![]()

![]()
### Sign Up

![]()
### Sign In

![]()
### Account

![]()
![]()
### Gallery

![]()
### Shopping Cart

![]()
### Admin

![]()
### Admin (Add)

![]()
### Admin (Edit)

![]()
### Components
#### Navbar

![]()
#### Footer

![]()
### Dev Setup & Commands
Download:
- **[Node.js](https://nodejs.org/en/download)**
- **[Composer](https://getcomposer.org)**
- **[Laravel](https://laravel.com/docs/9.x/installation)**
- **[MySQL](https://www.mysql.com/downloads)**
- Or you can use: **[XAMP](https://www.apachefriends.org)**Run this followed commands:
```bash
# 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
```