Map Voters Rest API
Install mapvoters with composer
git clone https://github.com/mikmself/mapvoters.git
cd mapvoters
composer install || composer updaterename .env.exampe to .env
setup database
php artisan migrate
php artisan db:seed
php artisan serveTo see hidden route list
php artisan route:list GET /api/items| Parameter | Type | Description |
|---|---|---|
api_key |
string |
Required. Your API key |
GET /api/items/${id}| Parameter | Type | Description |
|---|---|---|
| 'api_key' | 'string' | Required. Your API key |
id |
string |
Required. Id of item to fetch |
POST /api/items| Parameter | Type | Description |
|---|---|---|
api_key |
string |
Required. Your API key |
PUT /api/items/${id}| Parameter | Type | Description |
|---|---|---|
api_key |
string |
Required. Your API key |
id |
string |
Required. Id of item to fetch |
DELETE /api/items/${id}| Parameter | Type | Description |
|---|---|---|
api_key |
string |
Required. Your API key |
Client: Livewire, Filament Component
Server: Laravel