• Stars
    star
    5
  • Rank 2,853,088 (Top 57 %)
  • Language
    PHP
  • License
    MIT License
  • Created over 3 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple forum built on Laravel.

FOR-UM

Mini forum built on Laravel.

Demo

Here

What inside?

Installation

Clone or download this repository

$ git clone https://github.com/Zzzul/for-um.git

Install all dependencies

# install laravel dependency
$ composer install

Generate app key, configure .env file and do migration.

# create copy of .env
$ cp .env.example .env

# set .env email for notification 
$ MAIL_MAILER=smtp
$ MAIL_HOST=smtp.mailtrap.io
$ MAIL_PORT=2525
$ MAIL_USERNAME=YOUR_USERNAME
$ MAIL_PASSWORD=YOUR_PASSWORD
$ MAIL_ENCRYPTION=tls
$ MAIL_FROM_ADDRESS="[email protected]"
$ MAIL_FROM_NAME="${APP_NAME}"

# set queue connection
$ QUEUE_CONNECTION=database

# create laravel key
$ php artisan key:generate

# laravel migrate
$ php artisan migrate

# Start local development server
$ php artisan serve

# run queue on other terminal
$ php artisan queue:work

License

MIT