This Laravel-based API provides a comprehensive set of features for managing teams
- Create, view, update, and remove teams
- Login, register, and logout
To install the API, clone this repository to your local machine and run the following commands:
composer install
php artisan key:generate
php artisan migrate
Once the API is installed, you can start using it by sending HTTP requests to the following endpoints:
/api/v1
Endpoint | Method | Description |
---|---|---|
/teams?type={type} |
GET |
View available teams with the specified type |
/teams |
POST |
Create a new team |
/teams/{team} |
GET |
View a specific team |
/teams/{team} |
PUT |
Update a specific team |
/teams/{team} |
DELETE |
Remove a specific team |
Contributions are always welcome!