• Stars
    star
    2,924
  • Rank 15,421 (Top 0.4 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 9 years ago
  • Updated 11 months ago

Reviews

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

Repository Details

Laravel 10 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. Uses offical [Bootstrap 4](http://getbootstrap.com). This also makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. 5 Minutes Stand-up time.

Laravel Auth

Laravel Auth is a Complete Build of Laravel 10 with Email Registration Verification, Social Authentication, User Roles and Permissions, User Profiles, and Admin restricted user management system. Built on Bootstrap 4.

StyleCI Scrutinizer Code Quality Code Intelligence Status All Contributors MadeWithLaravel.com shield License: MIT

Sponsor me on GitHub Sponsor me on Patreon Buy me a Coffee Vultr GitHub Stars Follow on GitHub Follow on Twitter

This project costs me $22/month to be hosted on Vultr.
Please consider supporting my work if you use & find it useful. ❀️

Note

If you like this, you will love Laravel Auth Spa with configurable providers from an admin panel.

Table of contents

About

Laravel 10 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. Uses official Bootstrap 4. This also makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. Project can be stood up in minutes.

Features

A Laravel 10 with Bootstrap 4.x project.

Laravel Auth Features
Built on Laravel 10
Built on Bootstrap 4
Uses MySQL Database (can be changed)
Uses Artisan to manage database migration, schema creations, and create/publish page controller templates
Dependencies are managed with COMPOSER
Laravel Scaffolding User and Administrator Authentication.
User Socialite Logins ready to go - See API list used below
Google Maps API v3 for User Location lookup and Geocoding
CRUD (Create, Read, Update, Delete) Themes Management
CRUD (Create, Read, Update, Delete) User Management
Robust Laravel Logging with admin UI using MonoLog
Google reCaptcha Protection with Google API
User Registration with email verification
Makes use of Laravel Mix to compile assets
Makes use of Language Localization Files
Active Nav states using Laravel Requests
Restrict User Email Activation Attempts
Capture IP to users table upon signup
Uses Laravel Debugger for development
Makes use of Password Strength Meter
Makes use of hideShowPassword
User Avatar Image AJAX Upload with Dropzone.js
User Gravatar using Gravatar API
User Password Reset via Email Token
User Login with remember password
User Roles/ACL Implementation
Roles and Permissions GUI
Makes use of Laravel's Soft Delete Structure
Soft Deleted Users Management System
Permanently Delete Soft Deleted Users
User Delete Account with Goodbye email
User Restore Deleted Account Token
Restore Soft Deleted Users
View Soft Deleted Users
Captures Soft Delete Date
Captures Soft Delete IP
Admin Routing Details UI
Admin PHP Information UI
Eloquent user profiles
User Themes
404 Page
403 Page
Configurable Email Notification via Laravel-Exception-Notifier
Activity Logging using Laravel-logger
Optional 2-step account login verfication with Laravel 2-Step Verification
Uses Laravel PHP Info package
Uses Laravel Blocker package

Installation Instructions

  1. Run git clone https://github.com/jeremykenedy/laravel-auth.git laravel-auth
  2. Create a MySQL database for the project
    • mysql -u root -p, if using Vagrant: mysql -u homestead -psecret
    • create database laravelAuth;
    • \q
  3. From the projects root run cp .env.example .env
  4. Configure your .env file
  5. Install composer, php-mysql, php-ext and php-dom (dependent on your distrubtion, For Debian run apt install composer php-mysql php-ext php-dom)
  6. Run composer update from the projects root folder
  7. From the projects root folder run:
php artisan vendor:publish --tag=laravelroles &&
php artisan vendor:publish --tag=laravel2step &&
php artisan vendor:publish --tag=laravel-email-database-log-migration
  1. From the projects root folder run sudo chmod -R 755 ../laravel-auth
  2. From the projects root folder run php artisan key:generate
  3. From the projects root folder run php artisan migrate
  4. From the projects root folder run composer dump-autoload
  5. From the projects root folder run php artisan db:seed
  6. Compile the front end assets with npm steps or yarn steps.

Build the Front End Assets with Mix

Using Yarn:
  1. Install yarn (dependent on your distribution)
  2. From the projects root folder run yarn install
  3. From the projects root folder run yarn run dev or yarn run production
  • You can watch assets with yarn run watch
Using NPM:
  1. From the projects root folder run npm install
  2. From the projects root folder run npm run dev or npm run production
  • You can watch assets with npm run watch

Optionally Build Cache

  1. From the projects root folder run php artisan config:cache
And thats it with the caveat of setting up and configuring your development environment. I recommend Laravel Homestead

Seeds

Seeded Roles
  • Unverified - Level 0
  • User - Level 1
  • Administrator - Level 5
Seeded Permissions
  • view.users
  • create.users
  • edit.users
  • delete.users
Seeded Users
Email Password Access
[email protected] password User Access
[email protected] password Admin Access
Themes Seed List
  • ThemesTableSeeder
  • NOTE: A lot of themes render incorrectly on Bootstrap 4 since their core was built to override Bootstrap 4. These will be updated soon and ones that do not render correctly will be removed from the seed. In the mean time you can remove them from the seed or manaully from the UI or database.
Blocked Types Seed List
Slug Name
email E-mail
ipAddress IP Address
domain Domain Name
user User
city City
state State
country Country
countryCode Country Code
continent Continent
region Region
Blocked Items Seed List
Type Value Note
domain test.com Block all domains/emails @test.com
domain test.ca Block all domains/emails @test.ca
domain fake.com Block all domains/emails @fake.com
domain example.com Block all domains/emails @example.com
domain mailinator.com Block all domains/emails @mailinator.com

Routes

+--------+----------------------------------------+---------------------------------------+-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+
| Domain | Method                                 | URI                                   | Name                                          | Action                                                                                                          | Middleware                                                   |
+--------+----------------------------------------+---------------------------------------+-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+
|        | GET|HEAD                               | /                                     | welcome                                       | App\Http\Controllers\WelcomeController@welcome                                                                  | web,checkblocked                                             |
|        | GET|HEAD                               | _debugbar/assets/javascript           | debugbar.assets.js                            | Barryvdh\Debugbar\Controllers\AssetController@js                                                                | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure         |
|        | GET|HEAD                               | _debugbar/assets/stylesheets          | debugbar.assets.css                           | Barryvdh\Debugbar\Controllers\AssetController@css                                                               | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure         |
|        | DELETE                                 | _debugbar/cache/{key}/{tags?}         | debugbar.cache.delete                         | Barryvdh\Debugbar\Controllers\CacheController@delete                                                            | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure         |
|        | GET|HEAD                               | _debugbar/clockwork/{id}              | debugbar.clockwork                            | Barryvdh\Debugbar\Controllers\OpenHandlerController@clockwork                                                   | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure         |
|        | GET|HEAD                               | _debugbar/open                        | debugbar.openhandler                          | Barryvdh\Debugbar\Controllers\OpenHandlerController@handle                                                      | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure         |
|        | GET|HEAD                               | _debugbar/telescope/{id}              | debugbar.telescope                            | Barryvdh\Debugbar\Controllers\TelescopeController@show                                                          | Barryvdh\Debugbar\Middleware\DebugbarEnabled,Closure         |
|        | GET|HEAD                               | activate                              | activate                                      | App\Http\Controllers\Auth\ActivateController@initial                                                            | web,activity,checkblocked,auth                               |
|        | GET|HEAD                               | activate/{token}                      | authenticated.activate                        | App\Http\Controllers\Auth\ActivateController@activate                                                           | web,activity,checkblocked,auth                               |
|        | GET|HEAD                               | activation                            | authenticated.activation-resend               | App\Http\Controllers\Auth\ActivateController@resend                                                             | web,activity,checkblocked,auth                               |
|        | GET|HEAD                               | activation-required                   | activation-required                           | App\Http\Controllers\Auth\ActivateController@activationRequired                                                 | web,auth,activated,activity,checkblocked                     |
|        | GET|HEAD                               | active-users                          |                                               | App\Http\Controllers\AdminDetailsController@activeUsers                                                         | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | activity                              | activity                                      | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@showAccessLog                           | web,auth,activity,role:admin                                 |
|        | DELETE                                 | activity/clear-activity               | clear-activity                                | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@clearActivityLog                        | web,auth,activity,role:admin                                 |
|        | GET|HEAD                               | activity/cleared                      | cleared                                       | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@showClearedActivityLog                  | web,auth,activity,role:admin                                 |
|        | GET|HEAD                               | activity/cleared/log/{id}             |                                               | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@showClearedAccessLogEntry               | web,auth,activity,role:admin                                 |
|        | DELETE                                 | activity/destroy-activity             | destroy-activity                              | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@destroyActivityLog                      | web,auth,activity,role:admin                                 |
|        | GET|HEAD                               | activity/log/{id}                     |                                               | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@showAccessLogEntry                      | web,auth,activity,role:admin                                 |
|        | POST                                   | activity/restore-log                  | restore-activity                              | jeremykenedy\LaravelLogger\App\Http\Controllers\LaravelLoggerController@restoreClearedActivityLog               | web,auth,activity,role:admin                                 |
|        | POST                                   | avatar/upload                         | avatar.upload                                 | App\Http\Controllers\ProfilesController@upload                                                                  | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | GET|HEAD                               | blocker                               | laravelblocker::blocker.index                 | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@index                                 | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | POST                                   | blocker                               | laravelblocker::blocker.store                 | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@store                                 | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | GET|HEAD                               | blocker-deleted                       | laravelblocker::blocker-deleted               | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@index                          | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | DELETE                                 | blocker-deleted-destroy-all           | laravelblocker::destroy-all-blocked           | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@destroyAllItems                | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | POST                                   | blocker-deleted-restore-all           | laravelblocker::blocker-deleted-restore-all   | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@restoreAllBlockedItems         | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | DELETE                                 | blocker-deleted/{id}                  | laravelblocker::blocker-item-destroy          | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@destroy                        | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | PUT                                    | blocker-deleted/{id}                  | laravelblocker::blocker-item-restore          | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@restoreBlockedItem             | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | GET|HEAD                               | blocker-deleted/{id}                  | laravelblocker::blocker-item-show-deleted     | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@show                           | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | GET|HEAD                               | blocker/create                        | laravelblocker::blocker.create                | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@create                                | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | DELETE                                 | blocker/{blocker}                     | laravelblocker::blocker.destroy               | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@destroy                               | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | PUT|PATCH                              | blocker/{blocker}                     | laravelblocker::blocker.update                | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@update                                | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | GET|HEAD                               | blocker/{blocker}                     | laravelblocker::blocker.show                  | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@show                                  | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | GET|HEAD                               | blocker/{blocker}/edit                | laravelblocker::blocker.edit                  | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@edit                                  | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | GET|HEAD                               | exceeded                              | exceeded                                      | App\Http\Controllers\Auth\ActivateController@exceeded                                                           | web,activity,checkblocked,auth                               |
|        | GET|HEAD                               | home                                  | public.home                                   | App\Http\Controllers\UserController@index                                                                       | web,auth,activated,activity,twostep,checkblocked             |
|        | GET|HEAD                               | images/profile/{id}/avatar/{image}    |                                               | App\Http\Controllers\ProfilesController@userProfileAvatar                                                       | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | POST                                   | login                                 |                                               | App\Http\Controllers\Auth\LoginController@login                                                                 | web,guest                                                    |
|        | GET|HEAD                               | login                                 | login                                         | App\Http\Controllers\Auth\LoginController@showLoginForm                                                         | web,guest                                                    |
|        | POST                                   | logout                                | logout                                        | App\Http\Controllers\Auth\LoginController@logout                                                                | web                                                          |
|        | GET|HEAD                               | logout                                | logout                                        | App\Http\Controllers\Auth\LoginController@logout                                                                | web,auth,activated,activity,checkblocked                     |
|        | GET|HEAD                               | logs                                  |                                               | Rap2hpoutre\LaravelLogViewer\LogViewerController@index                                                          | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | POST                                   | password/email                        | password.email                                | App\Http\Controllers\Auth\ForgotPasswordController@sendResetLinkEmail                                           | web,guest                                                    |
|        | GET|HEAD                               | password/reset                        | password.request                              | App\Http\Controllers\Auth\ForgotPasswordController@showLinkRequestForm                                          | web,guest                                                    |
|        | POST                                   | password/reset                        | password.update                               | App\Http\Controllers\Auth\ResetPasswordController@reset                                                         | web,guest                                                    |
|        | GET|HEAD                               | password/reset/{token}                | password.reset                                | App\Http\Controllers\Auth\ResetPasswordController@showResetForm                                                 | web,guest                                                    |
|        | GET|HEAD                               | permission-deleted/{id}               | laravelroles::permission-show-deleted         | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelpermissionsDeletedController@show                         | web,auth,role:admin                                          |
|        | DELETE                                 | permission-destroy/{id}               | laravelroles::permission-item-destroy         | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelpermissionsDeletedController@destroy                      | web,auth,role:admin                                          |
|        | PUT                                    | permission-restore/{id}               | laravelroles::permission-restore              | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelpermissionsDeletedController@restorePermission            | web,auth,role:admin                                          |
|        | POST                                   | permissions                           | laravelroles::permissions.store               | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelPermissionsController@store                               | web,auth,role:admin                                          |
|        | GET|HEAD                               | permissions                           | laravelroles::permissions.index               | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelPermissionsController@index                               | web,auth,role:admin                                          |
|        | GET|HEAD                               | permissions-deleted                   | laravelroles::permissions-deleted             | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelpermissionsDeletedController@index                        | web,auth,role:admin                                          |
|        | DELETE                                 | permissions-deleted-destroy-all       | laravelroles::destroy-all-deleted-permissions | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelpermissionsDeletedController@destroyAllDeletedPermissions | web,auth,role:admin                                          |
|        | POST                                   | permissions-deleted-restore-all       | laravelroles::permissions-deleted-restore-all | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelpermissionsDeletedController@restoreAllDeletedPermissions | web,auth,role:admin                                          |
|        | GET|HEAD                               | permissions/create                    | laravelroles::permissions.create              | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelPermissionsController@create                              | web,auth,role:admin                                          |
|        | GET|HEAD                               | permissions/{permission}              | laravelroles::permissions.show                | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelPermissionsController@show                                | web,auth,role:admin                                          |
|        | DELETE                                 | permissions/{permission}              | laravelroles::permissions.destroy             | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelPermissionsController@destroy                             | web,auth,role:admin                                          |
|        | PUT|PATCH                              | permissions/{permission}              | laravelroles::permissions.update              | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelPermissionsController@update                              | web,auth,role:admin                                          |
|        | GET|HEAD                               | permissions/{permission}/edit         | laravelroles::permissions.edit                | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelPermissionsController@edit                                | web,auth,role:admin                                          |
|        | GET|HEAD|POST|PUT|PATCH|DELETE|OPTIONS | php                                   |                                               | Illuminate\Routing\RedirectController                                                                           | web                                                          |
|        | GET|HEAD                               | phpinfo                               | laravelPhpInfo::phpinfo                       | jeremykenedy\LaravelPhpInfo\App\Http\Controllers\LaravelPhpInfoController@phpinfo                               | web,auth,activated,role:admin,activity,twostep               |
|        | GET|HEAD                               | profile/create                        | profile.create                                | App\Http\Controllers\ProfilesController@create                                                                  | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | PUT|PATCH                              | profile/{profile}                     | profile.update                                | App\Http\Controllers\ProfilesController@update                                                                  | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | GET|HEAD                               | profile/{profile}                     | profile.show                                  | App\Http\Controllers\ProfilesController@show                                                                    | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | GET|HEAD                               | profile/{profile}/edit                | profile.edit                                  | App\Http\Controllers\ProfilesController@edit                                                                    | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | GET|HEAD                               | profile/{username}                    | {username}                                    | App\Http\Controllers\ProfilesController@show                                                                    | web,auth,activated,activity,twostep,checkblocked             |
|        | DELETE                                 | profile/{username}/deleteUserAccount  | {username}                                    | App\Http\Controllers\ProfilesController@deleteUserAccount                                                       | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | PUT                                    | profile/{username}/updateUserAccount  | {username}                                    | App\Http\Controllers\ProfilesController@updateUserAccount                                                       | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | PUT                                    | profile/{username}/updateUserPassword | {username}                                    | App\Http\Controllers\ProfilesController@updateUserPassword                                                      | web,auth,activated,currentUser,activity,twostep,checkblocked |
|        | GET|HEAD                               | re-activate/{token}                   | user.reactivate                               | App\Http\Controllers\RestoreUserController@userReActivate                                                       | web,activity,checkblocked                                    |
|        | POST                                   | register                              |                                               | App\Http\Controllers\Auth\RegisterController@register                                                           | web,guest                                                    |
|        | GET|HEAD                               | register                              | register                                      | App\Http\Controllers\Auth\RegisterController@showRegistrationForm                                               | web,guest                                                    |
|        | GET|HEAD                               | role-deleted/{id}                     | laravelroles::role-show-deleted               | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesDeletedController@show                               | web,auth,role:admin                                          |
|        | DELETE                                 | role-destroy/{id}                     | laravelroles::role-item-destroy               | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesDeletedController@destroy                            | web,auth,role:admin                                          |
|        | PUT                                    | role-restore/{id}                     | laravelroles::role-restore                    | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesDeletedController@restoreRole                        | web,auth,role:admin                                          |
|        | POST                                   | roles                                 | laravelroles::roles.store                     | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesController@store                                     | web,auth,role:admin                                          |
|        | GET|HEAD                               | roles                                 | laravelroles::roles.index                     | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesController@index                                     | web,auth,role:admin                                          |
|        | GET|HEAD                               | roles-deleted                         | laravelroles::roles-deleted                   | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesDeletedController@index                              | web,auth,role:admin                                          |
|        | DELETE                                 | roles-deleted-destroy-all             | laravelroles::destroy-all-deleted-roles       | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesDeletedController@destroyAllDeletedRoles             | web,auth,role:admin                                          |
|        | POST                                   | roles-deleted-restore-all             | laravelroles::roles-deleted-restore-all       | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesDeletedController@restoreAllDeletedRoles             | web,auth,role:admin                                          |
|        | GET|HEAD                               | roles/create                          | laravelroles::roles.create                    | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesController@create                                    | web,auth,role:admin                                          |
|        | GET|HEAD                               | roles/{role}                          | laravelroles::roles.show                      | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesController@show                                      | web,auth,role:admin                                          |
|        | PUT|PATCH                              | roles/{role}                          | laravelroles::roles.update                    | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesController@update                                    | web,auth,role:admin                                          |
|        | DELETE                                 | roles/{role}                          | laravelroles::roles.destroy                   | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesController@destroy                                   | web,auth,role:admin                                          |
|        | GET|HEAD                               | roles/{role}/edit                     | laravelroles::roles.edit                      | jeremykenedy\LaravelRoles\App\Http\Controllers\LaravelRolesController@edit                                      | web,auth,role:admin                                          |
|        | GET|HEAD                               | routes                                |                                               | App\Http\Controllers\AdminDetailsController@listRoutes                                                          | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | POST                                   | search-blocked                        | laravelblocker::search-blocked                | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@search                                | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | POST                                   | search-blocked-deleted                | laravelblocker::search-blocked-deleted        | jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@search                         | web,checkblocked,auth,activated,role:admin,activity,twostep  |
|        | POST                                   | search-users                          | search-users                                  | App\Http\Controllers\UsersManagementController@search                                                           | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | social/handle/{provider}              | social.handle                                 | App\Http\Controllers\Auth\SocialController@getSocialHandle                                                      | web,activity,checkblocked                                    |
|        | GET|HEAD                               | social/redirect/{provider}            | social.redirect                               | App\Http\Controllers\Auth\SocialController@getSocialRedirect                                                    | web,activity,checkblocked                                    |
|        | GET|HEAD                               | terms                                 | terms                                         | App\Http\Controllers\TermsController@terms                                                                      | web,checkblocked                                             |
|        | GET|HEAD                               | themes                                | themes                                        | App\Http\Controllers\ThemesManagementController@index                                                           | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | POST                                   | themes                                | themes.store                                  | App\Http\Controllers\ThemesManagementController@store                                                           | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | themes/create                         | themes.create                                 | App\Http\Controllers\ThemesManagementController@create                                                          | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | DELETE                                 | themes/{theme}                        | themes.destroy                                | App\Http\Controllers\ThemesManagementController@destroy                                                         | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | PUT|PATCH                              | themes/{theme}                        | themes.update                                 | App\Http\Controllers\ThemesManagementController@update                                                          | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | themes/{theme}                        | themes.show                                   | App\Http\Controllers\ThemesManagementController@show                                                            | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | themes/{theme}/edit                   | themes.edit                                   | App\Http\Controllers\ThemesManagementController@edit                                                            | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | users                                 | users                                         | App\Http\Controllers\UsersManagementController@index                                                            | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | POST                                   | users                                 | users.store                                   | App\Http\Controllers\UsersManagementController@store                                                            | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | users/create                          | users.create                                  | App\Http\Controllers\UsersManagementController@create                                                           | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | users/deleted                         | deleted.index                                 | App\Http\Controllers\SoftDeletesController@index                                                                | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | users/deleted/{deleted}               | deleted.show                                  | App\Http\Controllers\SoftDeletesController@show                                                                 | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | DELETE                                 | users/deleted/{deleted}               | deleted.destroy                               | App\Http\Controllers\SoftDeletesController@destroy                                                              | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | PUT|PATCH                              | users/deleted/{deleted}               | deleted.update                                | App\Http\Controllers\SoftDeletesController@update                                                               | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | DELETE                                 | users/{user}                          | user.destroy                                  | App\Http\Controllers\UsersManagementController@destroy                                                          | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | PUT|PATCH                              | users/{user}                          | users.update                                  | App\Http\Controllers\UsersManagementController@update                                                           | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | users/{user}                          | users.show                                    | App\Http\Controllers\UsersManagementController@show                                                             | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | users/{user}/edit                     | users.edit                                    | App\Http\Controllers\UsersManagementController@edit                                                             | web,auth,activated,role:admin,activity,twostep,checkblocked  |
|        | GET|HEAD                               | verification/needed                   | laravel2step::verificationNeeded              | jeremykenedy\laravel2step\App\Http\Controllers\TwoStepController@showVerification                               | web,auth,Closure                                             |
|        | POST                                   | verification/resend                   | laravel2step::resend                          | jeremykenedy\laravel2step\App\Http\Controllers\TwoStepController@resend                                         | web,auth,Closure                                             |
|        | POST                                   | verification/verify                   | laravel2step::verify                          | jeremykenedy\laravel2step\App\Http\Controllers\TwoStepController@verify                                         | web,auth,Closure                                             |
+--------+----------------------------------------+---------------------------------------+-----------------------------------------------+-----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------+

Socialite

Get Socialite Login API Keys:

Add More Socialite Logins

Steps:
  1. Go to https://socialiteproviders.github.io and select the provider to be added.

  2. From the projects root folder, in the terminal, run composer to get the needed package.

    • Example:
       composer require socialiteproviders/twitch
    
  3. From the projects root folder run composer update

  4. Add the service provider to /config/services.php

    • Example:
       'twitch' => [
           'client_id'   => env('TWITCH_KEY'),
           'client_secret' => env('TWITCH_SECRET'),
           'redirect'    => env('TWITCH_REDIRECT_URI'),
       ],
    
  5. Add the API credentials to /.env

    • Example:
       TWITCH_KEY=YOURKEYHERE
       TWITCH_SECRET=YOURSECRETHERE
       TWITCH_REDIRECT_URI=http://YOURWEBSITEURL.COM/social/handle/twitch
    
  6. Add the social media login link:

    • Example: In file /resources/views/auth/login.blade.php add ONE of the following:

      • Conventional HTML:
      <a href="{{ route('social.redirect', ['provider' => 'twitch']) }}" class="btn btn-lg btn-primary btn-block twitch">Twitch</a>
      
      {!! HTML::link(route('social.redirect', ['provider' => 'twitch']), 'Twitch', array('class' => 'btn btn-lg btn-primary btn-block twitch')) !!}
      

Other API keys

Environment File

Example .env file:

APP_NAME=Laravel
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
APP_PROJECT_VERSION=7

LOG_CHANNEL=stack

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=

BROADCAST_DRIVER=pusher
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

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}"

EMAIL_EXCEPTION_ENABLED=false
EMAIL_EXCEPTION_FROM="${MAIL_FROM_ADDRESS}"
EMAIL_EXCEPTION_TO='[email protected], [email protected]'
EMAIL_EXCEPTION_CC=''
EMAIL_EXCEPTION_BCC=''
EMAIL_EXCEPTION_SUBJECT=''

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=

MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

ACTIVATION=true
ACTIVATION_LIMIT_TIME_PERIOD=24
ACTIVATION_LIMIT_MAX_ATTEMPTS=3
NULL_IP_ADDRESS=0.0.0.0

DEBUG_BAR_ENVIRONMENT=local

USER_RESTORE_CUTOFF_DAYS=31
USER_RESTORE_ENCRYPTION_KEY=
USER_LIST_PAGINATION_SIZE=50

LARAVEL_2STEP_ENABLED=false
LARAVEL_2STEP_DATABASE_CONNECTION=mysql
LARAVEL_2STEP_DATABASE_TABLE=laravel2step
LARAVEL_2STEP_USER_MODEL=App\Models\User
LARAVEL_2STEP_EMAIL_FROM=
LARAVEL_2STEP_EMAIL_FROM_NAME="Laravel 2 Step Verification"
LARAVEL_2STEP_EMAIL_SUBJECT='Laravel 2 Step Verification'
LARAVEL_2STEP_EXCEEDED_COUNT=3
LARAVEL_2STEP_EXCEEDED_COUNTDOWN_MINUTES=1440
LARAVEL_2STEP_VERIFIED_LIFETIME_MINUTES=360
LARAVEL_2STEP_RESET_BUFFER_IN_SECONDS=300
LARAVEL_2STEP_CSS_FILE="css/laravel2step/app.css"
LARAVEL_2STEP_APP_CSS_ENABLED=false
LARAVEL_2STEP_APP_CSS="css/app.css"
LARAVEL_2STEP_BOOTSTRAP_CSS_CDN_ENABLED=true
LARAVEL_2STEP_BOOTSTRAP_CSS_CDN="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"

DEFAULT_GRAVATAR_SIZE=80
DEFAULT_GRAVATAR_FALLBACK=http://c1940652.r52.cf0.rackcdn.com/51ce28d0fb4f442061000000/Screen-Shot-2013-06-28-at-5.22.23-PM.png
DEFAULT_GRAVATAR_SECURE=false
DEFAULT_GRAVATAR_MAX_RATING=g
DEFAULT_GRAVATAR_FORCE_DEFAULT=false
DEFAULT_GRAVATAR_FORCE_EXTENSION=jpg

DROPZONE_JS_CDN=https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.4.0/dropzone.js

LARAVEL_LOGGER_DATABASE_CONNECTION=mysql
LARAVEL_LOGGER_DATABASE_TABLE=laravel_logger_activity
LARAVEL_LOGGER_ROLES_ENABLED=true
LARAVEL_LOGGER_ROLES_MIDDLWARE=role:admin
LARAVEL_LOGGER_MIDDLEWARE_ENABLED=true
LARAVEL_LOGGER_USER_MODEL=App\Models\User
LARAVEL_LOGGER_PAGINATION_ENABLED=true
LARAVEL_LOGGER_PAGINATION_PER_PAGE=25
LARAVEL_LOGGER_DATATABLES_ENABLED=false
LARAVEL_LOGGER_DASHBOARD_MENU_ENABLED=true
LARAVEL_LOGGER_DASHBOARD_DRILLABLE=true
LARAVEL_LOGGER_LOG_RECORD_FAILURES_TO_FILE=true
LARAVEL_LOGGER_FLASH_MESSAGE_BLADE_ENABLED=false
LARAVEL_LOGGER_JQUERY_CDN_ENABLED=false
LARAVEL_LOGGER_JQUERY_CDN_URL=https://code.jquery.com/jquery-2.2.4.min.js
LARAVEL_LOGGER_BLADE_CSS_PLACEMENT_ENABLED=true
LARAVEL_LOGGER_BLADE_JS_PLACEMENT_ENABLED=true
LARAVEL_LOGGER_BOOTSTRAP_JS_CDN_ENABLED=false
LARAVEL_LOGGER_BOOTSTRAP_JS_CDN_URL=https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js
LARAVEL_LOGGER_FONT_AWESOME_CDN_ENABLED=false
LARAVEL_LOGGER_FONT_AWESOME_CDN_URL=https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css
LARAVEL_LOGGER_BOOTSTRAP_CSS_CDN_ENABLED=false
LARAVEL_LOGGER_BOOTSTRAP_CSS_CDN_URL=https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css

LARAVEL_BLOCKER_USER_MODEL=App\Models\User
LARAVEL_BLOCKER_AUTH_ENABLED=true
LARAVEL_BLOCKER_ROLES_ENABLED=true
LARAVEL_BLOCKER_FLASH_MESSAGES_ENABLED=false
LARAVEL_BLOCKER_JQUERY_CDN_ENABLED=false
LARAVEL_BLOCKER_BLADE_PLACEMENT_CSS='template_linked_css'
LARAVEL_BLOCKER_BLADE_PLACEMENT_JS='footer_scripts'
LARAVEL_BLOCKER_USE_TYPES_SEED_PUBLISHED=true
LARAVEL_BLOCKER_USE_ITEMS_SEED_PUBLISHED=true

# Roles database information
ROLES_DATABASE_CONNECTION=null

# Roles Misc Settings
ROLES_DEFAULT_SEPARATOR='.'

# Roles GUI Settings
ROLES_GUI_ENABLED=true
ROLES_GUI_AUTH_ENABLED=true
ROLES_GUI_MIDDLEWARE_ENABLED=true
ROLES_GUI_MIDDLEWARE='role:admin'
ROLES_GUI_BLADE_EXTENDED='layouts.app'
ROLES_GUI_TITLE_EXTENDED='template_title'
ROLES_GUI_LARAVEL_ROLES_ENABLED=true
ROLES_GUI_DATATABLES_JS_ENABLED=false
ROLES_GUI_FLASH_MESSAGES_ENABLED=false
ROLES_GUI_BLADE_PLACEMENT_CSS=template_linked_css
ROLES_GUI_BLADE_PLACEMENT_JS=footer_scripts

# Google Analytics - If blank it will not render, default is false
GOOGLE_ANALYTICS_ID=
#GOOGLE_ANALYTICS_ID='UA-XXXXXXXX-X'

# NOTE: YOU CAN REMOVE THE KEY CALL IN app.blade.php IF YOU GET A POP UP AND DO NOT WANT TO SETUP A KEY FOR DEV
# Google Maps API v3 Key - https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key
GOOGLEMAPS_API_STATUS=true
GOOGLEMAPS_API_KEY=YOURGOOGLEMAPSkeyHERE

# https://www.google.com/recaptcha/admin#list
ENABLE_RECAPTCHA=true
RE_CAP_SITE=YOURGOOGLECAPTCHAsitekeyHERE
RE_CAP_SECRET=YOURGOOGLECAPTCHAsecretHERE

# https://console.developers.google.com/ - NEED OAUTH CREDS
GOOGLE_ID=YOURGOOGLEPLUSidHERE
GOOGLE_SECRET=YOURGOOGLEPLUSsecretHERE
GOOGLE_REDIRECT=https://YOURWEBURLHERE.COM/social/handle/google

# https://developers.facebook.com/
FB_ID=YOURFACEBOOKidHERE
FB_SECRET=YOURFACEBOOKsecretHERE
FB_REDIRECT=https://YOURWEBURLHERE.COM/social/handle/facebook

# https://apps.twitter.com/
TW_ID=YOURTWITTERidHERE
TW_SECRET=YOURTWITTERkeyHERE
TW_REDIRECT=https://YOURWEBURLHERE.COM/social/handle/twitter

# https://github.com/settings/applications/new
GITHUB_ID=YOURIDHERE
GITHUB_SECRET=YOURSECRETHERE
GITHUB_URL=https://YOURWEBURLHERE.COM/social/handle/github

# https://developers.google.com/youtube/v3/getting-started
YOUTUBE_KEY=YOURKEYHERE
YOUTUBE_SECRET=YOURSECRETHERE
YOUTUBE_REDIRECT_URI=https://YOURWEBURLHERE.COM/social/handle/youtube

# https://dev.twitch.tv/docs/authentication/
TWITCH_KEY=YOURKEYHERE
TWITCH_SECRET=YOURSECRETHERE
TWITCH_REDIRECT_URI=https://YOURWEBURLHERE.COM/social/handle/twitch

# https://instagram.com/developer/register/
INSTAGRAM_KEY=YOURKEYHERE
INSTAGRAM_SECRET=YOURSECRETHERE
INSTAGRAM_REDIRECT_URI=https://YOURWEBURLHERE.COM/social/handle/instagram

# https://basecamp.com/
# https://github.com/basecamp/basecamp-classic-api
37SIGNALS_KEY=YOURKEYHERE
37SIGNALS_SECRET=YOURSECRETHERE
37SIGNALS_REDIRECT_URI=https://YOURWEBURLHERE.COM/social/handle/37signals

Laravel Developement Packages Used References

Updates:
  • Update to Laravel 10 (Major Changes)
  • Update to Laravel 9
  • Update to Laravel 8
  • Update to Laravel 7 See changes in this PR
  • Update to Laravel 6
  • Update to Laravel 5.8
  • Added Laravel Blocker Package
  • Added PHP Info Package
  • Update to Bootstrap 4
  • Update to Laravel 5.7
  • Added optional 2-step account login verfication with Laravel 2-Step Verification
  • Added activity logging using Laravel-logger
  • Added Configurable Email Notification using Laravel-Exception-Notifier
  • Update to Laravel 5.5
  • Added User Delete with Goodbye email
  • Added User Restore Deleted Account from email with secure token
  • Added Soft Deletes and Soft Deletes Management panel
  • Added User Account Settings to Profile Edit
  • Added User Change Password to Profile Edit
  • Added User Delete Account to Profile Edit
  • Added Password Strength Meter
  • Added hideShowPassword
  • Added Admin Routing Details
  • Admin PHP Information
  • Added Robust Laravel Logging with admin UI using MonoLog
  • Added Active Nav states using Laravel Requests
  • Added Laravel Debugger with Service Provider to manage status in .env file.
  • Updated Capture IP not found IP address
  • Added User Avatar Image AJAX Upload with Dropzone.js
  • Added User Gravatar using Gravatar API
  • Added Themes Management.
  • Add user profiles with seeded list and global view
  • Major overhaul on Laravel 5.4
  • Update from Laravel 5.1 to 5.2
  • Added eloquent editable user profile
  • Added IP Capture
  • Added Google Maps API v3 for User Location lookup
  • Added Google Maps API v3 for User Location Input Geocoding
  • Added Google Maps API v3 for User Location Map with Options
  • Added CRUD(Create, Read, Update, Delete) User Management

Screenshots

Login Register Registration Confirmation Registration Email Registration Complete Intial User Profile Edit User Profile Find Location Using Google Maps API v3 Profile Updated Profile Semi-completed

Admin Panel Users List Admin Panel Delete User Admin Panel Flash Error Admin Panel Show User Admin Panel Edit User Admin Panel Save Edits Admin Panel Create User

dashboard drilldown confirm-clear log-cleared-msg cleared-log confirm-restore confirm-destroy success-destroy success-restored cleared-drilldown

Verification Page Resent Email Modal Lock Warning Modal Locked Page Verification Email

Laravel Blocker Dashboard Laravel Blocker Search Laravel Blocker Create Laravel Blocker View Laravel Blocker Edit Laravel Blocker Delete Modal Laravel Blocker Deleted Dashboard Laravel Blocker Destroy Modal Laravel Blocker Flash Message Laravel Blocker Restore Modal Laravel Blocker Restore Flash Message

Laravel Roles GUI Dashboard Laravel Roles GUI Create New Role Laravel Roles GUI Edit Role Laravel Roles GUI Show Role Laravel Roles GUI Delete Role Laravel Roles GUI Success Deleted Laravel Roles GUI Deleted Role Show Laravel Roles GUI Restore Role Laravel Roles GUI Delete Permission Laravel Roles GUI Show Permission Laravel Roles GUI Permissions Dashboard Laravel Roles GUI Create New Permission Laravel Roles GUI Roles Soft Deletes Dashboard Laravel Roles GUI Permissions Soft Deletes Dashboard Laravel Roles GUI Success Restore

File Tree

laravel-auth
β”œβ”€β”€ .editorconfig
β”œβ”€β”€ .env
β”œβ”€β”€ .env.example
β”œβ”€β”€ .env.travis
β”œβ”€β”€ .gitattributes
β”œβ”€β”€ .github
β”‚Β Β  β”œβ”€β”€ FUNDING.yml
β”‚Β Β  └── ISSUE_TEMPLATE
β”‚Β Β      β”œβ”€β”€ bug_report.md
β”‚Β Β      β”œβ”€β”€ feature_request.md
β”‚Β Β      └── project-questions-and-help.md
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .phpunit.result.cache
β”œβ”€β”€ .styleci.yml
β”œβ”€β”€ .travis.yml
β”œβ”€β”€ CODE_OF_CONDUCT.md
β”œβ”€β”€ LICENSE
β”œβ”€β”€ README.md
β”œβ”€β”€ _config.yml
β”œβ”€β”€ app
β”‚Β Β  β”œβ”€β”€ Console
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Commands
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── DeleteExpiredActivations.php
β”‚Β Β  β”‚Β Β  └── Kernel.php
β”‚Β Β  β”œβ”€β”€ Exceptions
β”‚Β Β  β”‚Β Β  └── Handler.php
β”‚Β Β  β”œβ”€β”€ Http
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Controllers
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AdminDetailsController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Auth
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ActivateController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ForgotPasswordController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ LoginController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RegisterController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ResetPasswordController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── SocialController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Controller.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ProfilesController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RestoreUserController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ SoftDeletesController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TermsController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ThemesManagementController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ UserController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ UsersManagementController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── WelcomeController.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Kernel.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Middleware
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Authenticate.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CheckCurrentUser.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CheckForMaintenanceMode.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CheckIsUserActivated.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ EncryptCookies.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RedirectIfAuthenticated.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TrimStrings.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TrustProxies.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── VerifyCsrfToken.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Requests
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ DeleteUserAccount.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ UpdateUserPasswordRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── UpdateUserProfile.php
β”‚Β Β  β”‚Β Β  └── ViewComposers
β”‚Β Β  β”‚Β Β      └── ThemeComposer.php
β”‚Β Β  β”œβ”€β”€ Logic
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Activation
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── ActivationRepository.php
β”‚Β Β  β”‚Β Β  └── Macros
β”‚Β Β  β”‚Β Β      └── HtmlMacros.php
β”‚Β Β  β”œβ”€β”€ Mail
β”‚Β Β  β”‚Β Β  └── ExceptionOccured.php
β”‚Β Β  β”œβ”€β”€ Models
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Activation.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Profile.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Social.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Theme.php
β”‚Β Β  β”‚Β Β  └── User.php
β”‚Β Β  β”œβ”€β”€ Notifications
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ SendActivationEmail.php
β”‚Β Β  β”‚Β Β  └── SendGoodbyeEmail.php
β”‚Β Β  β”œβ”€β”€ Providers
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AuthServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ BroadcastServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ComposerServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ EventServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ LocalEnvironmentServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ MacroServiceProvider.php
β”‚Β Β  β”‚Β Β  └── RouteServiceProvider.php
β”‚Β Β  └── Traits
β”‚Β Β      β”œβ”€β”€ ActivationTrait.php
β”‚Β Β      β”œβ”€β”€ CaptchaTrait.php
β”‚Β Β      └── CaptureIpTrait.php
β”œβ”€β”€ artisan
β”œβ”€β”€ bootstrap
β”‚Β Β  β”œβ”€β”€ app.php
β”‚Β Β  β”œβ”€β”€ autoload.php
β”‚Β Β  └── cache
β”‚Β Β      β”œβ”€β”€ .gitignore
β”‚Β Β      β”œβ”€β”€ packages.php
β”‚Β Β      └── services.php
β”œβ”€β”€ composer.json
β”œβ”€β”€ composer.lock
β”œβ”€β”€ config
β”‚Β Β  β”œβ”€β”€ app.php
β”‚Β Β  β”œβ”€β”€ auth.php
β”‚Β Β  β”œβ”€β”€ broadcasting.php
β”‚Β Β  β”œβ”€β”€ cache.php
β”‚Β Β  β”œβ”€β”€ cors.php
β”‚Β Β  β”œβ”€β”€ database.php
β”‚Β Β  β”œβ”€β”€ debugbar.php
β”‚Β Β  β”œβ”€β”€ exceptions.php
β”‚Β Β  β”œβ”€β”€ filesystems.php
β”‚Β Β  β”œβ”€β”€ gravatar.php
β”‚Β Β  β”œβ”€β”€ hashing.php
β”‚Β Β  β”œβ”€β”€ laravel2step.php
β”‚Β Β  β”œβ”€β”€ laravelPhpInfo.php
β”‚Β Β  β”œβ”€β”€ laravelblocker.php
β”‚Β Β  β”œβ”€β”€ logging.php
β”‚Β Β  β”œβ”€β”€ mail.php
β”‚Β Β  β”œβ”€β”€ queue.php
β”‚Β Β  β”œβ”€β”€ roles.php
β”‚Β Β  β”œβ”€β”€ services.php
β”‚Β Β  β”œβ”€β”€ session.php
β”‚Β Β  β”œβ”€β”€ settings.php
β”‚Β Β  β”œβ”€β”€ usersmanagement.php
β”‚Β Β  └── view.php
β”œβ”€β”€ database
β”‚Β Β  β”œβ”€β”€ .gitignore
β”‚Β Β  β”œβ”€β”€ factories
β”‚Β Β  β”‚Β Β  └── ModelFactory.php
β”‚Β Β  β”œβ”€β”€ migrations
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2014_10_12_000000_create_users_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2014_10_12_100000_create_password_resets_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_15_105324_create_roles_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_15_114412_create_role_user_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_26_115212_create_permissions_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_26_115523_create_permission_role_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_02_09_132439_create_permission_user_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2017_03_09_082449_create_social_logins_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2017_03_09_082526_create_activations_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2017_03_20_213554_create_themes_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2017_03_21_042918_create_profiles_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2017_12_09_070937_create_two_step_auth_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2019_02_19_032636_create_laravel_blocker_types_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2019_02_19_045158_create_laravel_blocker_table.php
β”‚Β Β  β”‚Β Β  └── 2019_08_19_000000_create_failed_jobs_table.php
β”‚Β Β  └── seeds
β”‚Β Β      β”œβ”€β”€ BlockedItemsTableSeeder.php
β”‚Β Β      β”œβ”€β”€ BlockedTypeTableSeeder.php
β”‚Β Β      β”œβ”€β”€ ConnectRelationshipsSeeder.php
β”‚Β Β      β”œβ”€β”€ DatabaseSeeder.php
β”‚Β Β      β”œβ”€β”€ PermissionsTableSeeder.php
β”‚Β Β      β”œβ”€β”€ RolesTableSeeder.php
β”‚Β Β      β”œβ”€β”€ ThemesTableSeeder.php
β”‚Β Β      └── UsersTableSeeder.php
β”œβ”€β”€ license.svg
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
β”œβ”€β”€ phpunit.xml
β”œβ”€β”€ public
β”‚Β Β  β”œβ”€β”€ .htaccess
β”‚Β Β  β”œβ”€β”€ css
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.css
β”‚Β Β  β”‚Β Β  └── laravel2step
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ app.css
β”‚Β Β  β”‚Β Β      └── app.min.css
β”‚Β Β  β”œβ”€β”€ favicon.ico
β”‚Β Β  β”œβ”€β”€ fonts
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fontawesome-webfont.eot
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fontawesome-webfont.svg
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fontawesome-webfont.ttf
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fontawesome-webfont.woff
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fontawesome-webfont.woff2
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ glyphicons-halflings-regular.eot
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ glyphicons-halflings-regular.svg
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ glyphicons-halflings-regular.ttf
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ glyphicons-halflings-regular.woff
β”‚Β Β  β”‚Β Β  └── glyphicons-halflings-regular.woff2
β”‚Β Β  β”œβ”€β”€ images
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ wink.png
β”‚Β Β  β”‚Β Β  └── wink.svg
β”‚Β Β  β”œβ”€β”€ index.php
β”‚Β Β  β”œβ”€β”€ js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.99230f42ad184f498ce6.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.js
β”‚Β Β  β”‚Β Β  └── app.js.LICENSE.txt
β”‚Β Β  β”œβ”€β”€ mix-manifest.json
β”‚Β Β  β”œβ”€β”€ robots.txt
β”‚Β Β  └── web.config
β”œβ”€β”€ resources
β”‚Β Β  β”œβ”€β”€ assets
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ bootstrap.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── components
β”‚Β Β  β”‚Β Β  β”‚Β Β      β”œβ”€β”€ ExampleComponent.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β      └── UsersCount.vue
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ sass
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _avatar.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _badges.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _bootstrap-social.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _buttons.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _forms.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _helpers.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _hideShowPassword.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _lists.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _logs.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _margins.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _mixins.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _modals.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _panels.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _password.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _socials.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _typography.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _user-profile.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _variables.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _visibility.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ _wells.scss
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── app.scss
β”‚Β Β  β”‚Β Β  └── scss
β”‚Β Β  β”‚Β Β      └── laravel2step
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ _animations.scss
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ _mixins.scss
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ _modals.scss
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ _variables.scss
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ _verification.scss
β”‚Β Β  β”‚Β Β          └── app.scss
β”‚Β Β  β”œβ”€β”€ lang
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ en
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ auth.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ emails.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ forms.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ modals.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ pagination.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ passwords.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ permsandroles.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ profile.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ socials.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ terms.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ themes.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ titles.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ usersmanagement.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── validation.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ fr
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ auth.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ emails.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ forms.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ modals.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ pagination.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ passwords.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ permsandroles.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ profile.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ socials.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ titles.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ usersmanagement.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── validation.php
β”‚Β Β  β”‚Β Β  └── pt-br
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ auth.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ emails.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ forms.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ modals.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ pagination.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ passwords.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ permsandroles.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ profile.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ socials.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ themes.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ titles.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ usersmanagement.php
β”‚Β Β  β”‚Β Β      └── validation.php
β”‚Β Β  └── views
β”‚Β Β      β”œβ”€β”€ auth
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ activation.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ exceeded.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ login.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ passwords
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ email.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── reset.blade.php
β”‚Β Β      β”‚Β Β  └── register.blade.php
β”‚Β Β      β”œβ”€β”€ emails
β”‚Β Β      β”‚Β Β  └── exception.blade.php
β”‚Β Β      β”œβ”€β”€ errors
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ 403.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ 404.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ 500.blade.php
β”‚Β Β      β”‚Β Β  └── 503.blade.php
β”‚Β Β      β”œβ”€β”€ home.blade.php
β”‚Β Β      β”œβ”€β”€ layouts
β”‚Β Β      β”‚Β Β  └── app.blade.php
β”‚Β Β      β”œβ”€β”€ modals
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ modal-delete.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ modal-form.blade.php
β”‚Β Β      β”‚Β Β  └── modal-save.blade.php
β”‚Β Β      β”œβ”€β”€ pages
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ admin
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ active-users.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  β”œβ”€β”€ home.blade.php
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── route-details.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ public
β”‚Β Β      β”‚Β Β  β”‚Β Β  └── terms.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ status.blade.php
β”‚Β Β      β”‚Β Β  └── user
β”‚Β Β      β”‚Β Β      └── home.blade.php
β”‚Β Β      β”œβ”€β”€ panels
β”‚Β Β      β”‚Β Β  └── welcome-panel.blade.php
β”‚Β Β      β”œβ”€β”€ partials
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ errors.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ form-status.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ nav.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ search-users-form.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ socials-icons.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ socials.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ status-panel.blade.php
β”‚Β Β      β”‚Β Β  └── status.blade.php
β”‚Β Β      β”œβ”€β”€ profiles
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ edit.blade.php
β”‚Β Β      β”‚Β Β  └── show.blade.php
β”‚Β Β      β”œβ”€β”€ scripts
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ check-changed.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ datatables.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ delete-modal-script.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ form-modal-script.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ gmaps-address-lookup-api3.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ google-maps-geocode-and-map.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ save-modal-script.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ search-users.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ toggleStatus.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ tooltips.blade.php
β”‚Β Β      β”‚Β Β  └── user-avatar-dz.blade.php
β”‚Β Β      β”œβ”€β”€ themesmanagement
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ add-theme.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ edit-theme.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ show-theme.blade.php
β”‚Β Β      β”‚Β Β  └── show-themes.blade.php
β”‚Β Β      β”œβ”€β”€ usersmanagement
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ create-user.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ edit-user.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ show-deleted-user.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ show-deleted-users.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ show-user.blade.php
β”‚Β Β      β”‚Β Β  └── show-users.blade.php
β”‚Β Β      └── welcome.blade.php
β”œβ”€β”€ routes
β”‚Β Β  β”œβ”€β”€ api.php
β”‚Β Β  β”œβ”€β”€ channels.php
β”‚Β Β  β”œβ”€β”€ console.php
β”‚Β Β  └── web.php
β”œβ”€β”€ server.php
└── webpack.mix.js
  • Tree command can be installed using brew: brew install tree
  • File tree generated using command tree -a -I '.git|node_modules|vendor|storage|tests'

Opening an Issue

Before opening an issue there are a couple of considerations:

  • You are all awesome!
  • Please Read the instructions and make sure all steps were followed correctly.
  • Please Check that the issue is not specific to the development environment setup.
  • Please Provide duplication steps.
  • Please Attempt to look into the issue, and if you have a solution, make a pull request.
  • Please Show that you have made an attempt to look into the issue.
  • Please Check to see if the issue you are reporting is a duplicate of a previous reported issue.

Laravel Auth License

Licensed under the MIT license. Enjoy!

Contributors

  • Thanks goes to these wonderful people:
  • Please feel free to contribute and make pull requests!

More Repositories

1

laravel-roles

A Powerful package for handling roles and permissions in Laravel with GUI. Supports Laravel 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0, 8.0, and 9.0
PHP
891
star
2

laravel-logger

An out the box activity logger for your Laravel or Lumen application. Laravel logger is an activity event logger for your laravel application. It comes out the box with ready to use with dashboard to view your activity. Laravel logger can be added as a middleware or called through a trait. This package is easily configurable and customizable. Supports Laravel 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6, and 7+
PHP
494
star
3

laravel-users

A Users Management Package that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding. Built for Laravel 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0 and 8.0.
Blade
402
star
4

laravel-material-design

Laravel 5.6 on Material Design Lite 1.3 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. This makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. Uses laravel ORM modeling and has CRUD (Create Read Update Delete) functionality for all tasks. Quick setup, can be done in 5 minutes. It will take longer to obtain your Facebook, Twitter, and Google Plus API Keys than it will to set this up.
JavaScript
260
star
5

laravel2step

Laravel 2-Step verification is a package to add 2-Step user authentication to any Laravel project easily. It is configurable and customizable. It uses notifications to send the user an email with a 4-digit verification code. Laravel 2-Step Authentication Verification for Laravel. Can be used in out the box with Laravel's authentication scaffolding or integrated into other projects.
PHP
213
star
6

larablog

A powerful open source Laravel Blog with WYSWYG and CRUD (Create Read Update Delete) built on Laravel 5.8 and Bootstrap 4
PHP
146
star
7

laravel-exception-notifier

Laravel Exception Notifier will send an email of the error along with the stack trace to the chosen recipients. This Package includes all necessary traits, views, configs, and Mailers for email notifications upon your applications exceptions. You can customize who send to, cc to, bcc to, enable/disable, and custom subject or default subject based on environment. Built for Laravel 5.2, 5.3, 5.4, 5.5+. Get the errors and fix them before the client even reports them, that's why this exists! For Laravel 5, 6, and 7
PHP
125
star
8

laravel-spa

A Laravel + Socialite + Vite + Vue 3 + TailwindCSS SPA Boilerplate with user authentication, registration, email verification, social media authentication, password recovery, user management, and roles/permissions management. Uses TailwindCSS. While the front end is part of this repository it is a completely separated Vue 3 front end.
JavaScript
98
star
9

laravel-blocker

Larave Blocker is a middleware interface to block users, emails, ip addresses, domain names, cities, states, countries, continents, and regions from using your application, logging in, or registering. The types of items to be blocked can be extended to what you think via a seed. The items you are blocking have a CRUD interface along with a softdeletes interface.
Blade
92
star
10

laravel-admin

Laravel 5.2 + Bootstrap 3.5 + AdminLTE 2.3
JavaScript
61
star
11

slack-laravel

Laravel integration for the Slack, including facades and service providers.
PHP
55
star
12

laravel-phpinfo

Laravel PHP Info is a package that provides a PHPInfo() page using blade templating. The config file can be used to enable/disable auth protection and specify the roles middleware.
PHP
44
star
13

laravel-podcast

Laravel Podcast is Laravel 5.5 web app that enables you to manage RSS feeds for your favorite podcasts and listen to the episodes in a seamless UI and User Authentication.
PHP
38
star
14

laravel-https

Laravel Https is middleware to check for Secure HTTP requests. Laravel Https has can check for HTTPS and throw an error or automatically redirect to HTTPS.
PHP
34
star
15

laravel-tasks

An app of tasks lists for each individual user. Built on Laravel 5.2, using 5.2 authentication and middleware. This has robust verbose examples using Laravel best practices. The task list is a build out of https://laravel.com/docs/5.2/quickstart. This included minimal bootstrap implementation.
PHP
26
star
16

laravel-time-tracker

Laravel Angular Time Tracker is a simple time tracking application built on Laravel 5.2, Angular 2, and Bootstrap 3. It uses Laravel's built in authentication, MySQL, Angular Bootstrap 1.3.*, Angular Resource 1.5.* ngResource, jQuery 2.2.4 and Moment.js 2.13.*
PHP
25
star
17

laravel-soundboard

An open source Laravel Soundboard with Admin Panel CRUD (Create Read Update Delete) built on Laravel, Bootstrap, and Vue.js
PHP
24
star
18

laravel-uuid

Laravel package to generate a UUID according to the RFC 4122 standard. UUID Versions 1, 3, 4 and 5 are supported.
PHP
22
star
19

laravelpodcast

Laravel Podcast Manager is a complete podcast manager package for Laravel 5.3+ that enables you to manage RSS feeds for your favorite podcasts and listen to the episodes in a seamless UI.
CSS
22
star
20

laravel-dashboard

This is an example of Spatie Laravel Dashboard using Livewire and package components. This example has all settings extended to the `dashboard.php` config file and the `.env` file. This example uses minimal styling and customization.
PHP
14
star
21

laravel-passport

Laravel-passport is a basic API server build using Laravel, Passport, and Vue.js License Build Status This will act as the API server for laravel-consume. It is recommended that you setup and use Laravel Homestead as your development environment for this project. Personal Token Scoped with middleware for API routes is configured and ready to go. Included Laravel Scaffolding User, Editor, and Administrator Authentication with CRUD (Create, Read, Update, Delete) user management.
PHP
11
star
22

slack

A simple PHP package for sending messages to Slack.
PHP
9
star
23

laravel-pusher-chat

Example of chat messaging system with pusher and Eloquent
HTML
8
star
24

laravel-nerds

A Laravel 5.1 ORM example with Nerds as users.
PHP
7
star
25

laravel-email-database-log

A database logger for all outgoing emails sent by your Laravel application.
PHP
6
star
26

laravel-roles-example

An example of jeremykenedy/laravel-roles, a Laravel 5.4+ roles package.
PHP
6
star
27

laravel-packagist

An easy way to get vendor and package data from Packagist via API calls
PHP
5
star
28

microsoft-powerbi-javascript-example

Microsoft Power BI is a suite of business analytics tools that deliver insights throughout your organization. This is an example of the powerbi-client API javascript embeded interface.
JavaScript
5
star
29

jquery-ui-position-sql-save

Save position and resize properties of jQuery UI to a SQL table.
JavaScript
4
star
30

laravel-consumer

PHP
3
star
31

bootstrap-youtube-modal-plugin

Bootstap YouTube video modal helper, with auto video switcher to modal.
HTML
3
star
32

konami-asteroids

Use the Konami code to easily add a playable Astroids game to a page using the html as the game
JavaScript
3
star
33

laravel-todo

PHP
2
star
34

jeremy-sound-board

Set of wav files for the soundboard
2
star
35

laravel-charts

PHP
2
star
36

pushit

Salt and Pepper Push on Git Push - Or whatever mp3 you like. Basic bash shell-script calling git and afplay commands. The file mp3 file name and path are in a variable for easy maintenance and reusability for more alias's, you can also create more variables for other mp3's as well as just call them directly in your alias. This is pretty light weight and strait forward. The mp3 file was trimmed with quicktime and is being played with the native mac os (maybe linux? confirm?) player. The mp3 file is 274KB and the the attached shell script (sh) file is B. You can can the script file using the sh command or directly add the contents into your bash profile. Have fun !!!!! :)
Shell
2
star
37

hiupload-client

Vue
1
star
38

laravel_frozennode_cms

JavaScript
1
star
39

jeremykenedy

1
star
40

laravel-react-tasks

Simple create/read/update task list example using Laravel 5.7 API routes and ReactJS UI.
PHP
1
star
41

laravel-react-products

Simple products Create/Read example using Laravel 5.7 and ReactJS UI.
PHP
1
star
42

polr2

PHP
1
star
43

yt-video-gallery

jquery youtube video gallery plugin
JavaScript
1
star
44

pure-javascript-sorting

An example of sorting records with pure javascript.
HTML
1
star
45

action-planner-example

Example
PHP
1
star
46

zoom-care-events

A simple fully expandable Node.js app that takes JSON data and renders it in a MVC style setup with Express.js
CSS
1
star
47

laravel.local

An out the Box Laravel Installation with Auth scaffolding - For example purposes.
PHP
1
star
48

hiupload-api

PHP
1
star
49

crudbooster-example

PHP
1
star
50

angular-js-bootstrap-scss

This is an example of a front end application using Angular.js.
JavaScript
1
star
51

jeremykenedy.github.io

CSS
1
star
52

taco-time

Simple example Laravel 5.7 app to calculate taco checkout time using a VueJS 2 front end calling Laravel API endpoints.
PHP
1
star
53

laralogin

Laravel 5.1 with authentication and User/Admin MIddlware. Purely based on Laravel 5.1 documentations located at http://laravel.com/docs/5.1/authentication.
PHP
1
star
54

timezones

This is a base example of a laravel package. The focus is on the framework of the package and the essential elements and not so much what it actually does. It returns the time and date in a Laravel application when going to the the URL /timezones/{TIMEZONE} from the projects base url.
HTML
1
star
55

vue-cordova-ratchet

A Template created with vue cli and vue-cordova. This will compile using to IOS, Android, Electron, and OSX native all from the cli out the box!
Objective-C
1
star
56

resize-listener

A pure javascript resize listener, checks on page load and on every window resize. Handy for scripts and functions that need to run on mobile but not desktop or vice versa.
JavaScript
1
star