https://github.com/dimsav/laravel-code-review-exercise
https://github.com/dimsav/laravel-code-review-exercise
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dimsav/laravel-code-review-exercise
- Owner: dimsav
- Created: 2026-04-07T10:25:02.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-04-08T08:18:57.000Z (4 months ago)
- Last Synced: 2026-04-08T10:22:01.308Z (4 months ago)
- Language: Blade
- Size: 72.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bookworm - Online Book Marketplace
A Laravel-based marketplace where users can buy and sell second-hand books.
## Tech Stack
- PHP 8.3 / Laravel 12
- MySQL, Redis
- Blade templates, Tailwind CSS
## Setup
```bash
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate --seed
php artisan serve
```
## Models
- **User** — Registered users (buyers and sellers)
- **Book** — Book listings with title, author, ISBN, price
- **Order** — Purchase orders with status tracking
- **OrderItem** — Individual items within an order