The Event Management API is a robust RESTful API built with Laravel that empowers users to create, manage, and track events with ease. Perfect for event organizers and attendees alike!
| Feature | Description |
|---|---|
| 🎪 Event CRUD Operations | Create, read, update, and delete events |
| 👥 Attendee Management | Register and track event participants |
| 🔍 Advanced Search | Filter events by date, location, category |
| 🛡️ Rate Limiting | API request throttling for security |
- PHP 8.0+
- Composer
- MySQL 5.7+
# 1. Clone repository
git clone https://github.com/your-username/event-management-api.git
cd event-management-api
# 2. Install dependencies
composer install
# 3. Configure environment
cp .env.example .env
php artisan key:generate
# 4. Set up database (edit .env first)
php artisan migrate --seed
# 5. Start development server
php artisan serve