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
- Host: GitHub
- URL: https://github.com/akmamun/forum
- Owner: akmamun
- Created: 2018-01-09T11:00:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-24T11:24:15.000Z (over 7 years ago)
- Last Synced: 2025-02-01T18:43:31.015Z (8 months ago)
- Topics: forum, laravel
- Language: PHP
- Homepage:
- Size: 326 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 NotificationAfter 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]);
}
```