Its a web application for churches that manages administrative activities in the church.
it manages the church's attendances, collections, members, events, announcements.
features also includes bulk sms, email messaging, analysis on attendance, collection, members etc
git clone https://github.com/myckhel/church-management-system.git
composer install
cp .env.example .env
/ .env
APP_NAME=CMS
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://127.0.0.1:8000
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=cms
DB_USERNAME=root
DB_PASSWORD=
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"
php artisan key:generate
...
php artisan migrate
php artisan serve