An open API service indexing awesome lists of open source software.

https://github.com/akmamun/forum

Build A Forum Application with Laravel
https://github.com/akmamun/forum

forum laravel

Last synced: 7 months ago
JSON representation

Build A Forum Application with Laravel

Awesome Lists containing this project

README

          

# Build A Forum Application with Laravel

* Used Laravel 5.5

# Functionalities:
* User Registration/Login with Mail Verification
* User Forum Post
* User Forum Comment
* User Forum Reply
* Adding Channel Slug
* Filter With Archives
* Adding RestFull Api
* Send Mail with Queue
* Adding Notification

After these steps the user can still login without verifying.

In order to resolve this (in Laravel 5.5 anyways) you need to edit
Illuminate\Foundation\Auth\AuthenticatesUsers
Find this function:
```php
protected function credentials(Request $request)
{
return $request->only($this->username(), ‘password’);
}

and change it to:

protected function credentials(Request $request)
{
return array_merge($request->only($this->username(), ‘password’), [‘verified’ => 1]);
}
```