A simple app to keep track of members for a local club . The administrator can create or update members and their subscriptions,and notify them via sms using Nexmo API.
- Create/Update Members
- SMS texting using Nexmo API
- Print ballot paper with candidates names for upcoming elections
To run this project, you will need to add the following environment variables to your .env file.You can obtain them through Nexmo dashboard.
NEXMO_KEY=
NEXMO_SECRET=
Clone the project
git clone git@github.com:dimdam/members.git
Go to the project directory
cd project-folder
Configure the .env file with your DB credentials and then migrate the database
php artisan migrate
Start the server
php artisan serve