A full-featured Medium.com clone built with Laravel. This project replicates key functionalities of the popular blogging platform, including article creation, categorization, user authentication, and a sleek interface.
- 🧾 Post articles with title, content, and images
- 🔐 User authentication and registration
- 📚 Category filtering (Technology, Health, Politics, etc.)
- 📅 Publish dates and like counts
- 🧭 Clean UI/UX mimicking Medium
- 🛠 Built with Laravel backend
- Backend: Laravel 10+
- Database: MySQL
- Frontend: Blade / Tailwind CSS
- Authentication: Laravel Breeze
Home page displaying all articles categorized and styled like Medium.
- Clone the repo:
git clone https://github.com/yourusername/medium-clone.git cd medium-clone-laravel - Install dependencies:
composer install npm install && npm run dev - Setup environment
cp .env.example .env php artisan key:generate
- Configure your
.envand run migrations:php artisan migrate --seed
- Run the server
php artisan serve
