Laravel Material Design is a Complete Build of Laravel 5.6 and Google Material Design Lite 1.3 with Email Registration Verification, Social Authentication, User Roles and Permissions, User Profiles, and Admin restricted user management system.
- About
- Features
- Installation Instructions
- View the Project in Browser Using Artisan
- Seeds
- Routes
- Socialite
- Other API keys
- Environment File
- Helpful custom functions
- Screenshots
- File Tree
- Laravel References
- Opening an Issue
- Laravel Material Design License
Laravel 5.6 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.
A Laravel 5.6.x with Material Design Lite 1.3.0 project.
Laravel Material Design Features |
---|
Built on Laravel 5.6 |
Built on Material Design Lite 1.3.0 |
Uses MySQL Database (can be changed) and include migrations and seeds |
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 |
Uses 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) Tasks Management |
CRUD (Create, Read, Update, Delete) User Management |
Eloquent user profiles |
Users can pick theme through dropdown or colorwheel |
Users can upload profile background images |
User Avatar Image AJAX Upload with Dropzone.js |
User Gravatar using Gravatar API |
User Registration with email verification |
Google reCaptcha Protection with Google API |
Makes us 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 |
User uploads are in protected storage API |
Uses Laravel Debugger for development |
User Password Reset via Email Token |
User Login with remember password |
User Delete with Goodby email |
User Restore Deleted Account |
User Roles/ACL Implementation |
Configurable Email Notification via Laravel-Exception-Notifier |
Makes 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 |
404 Page |
- Run
git clone https://github.com/jeremykenedy/laravel-material-design.git laravel-material-design
- Create a MySQL database for the project
mysql -u root -p
, if using Vagrant:mysql -u homestead -psecret
create database laravel_material;
\q
- From the projects root run
cp .env.example .env
- Configure your
.env
file // NOTE: Google API Key will prevent maps error - Run
composer install
from the projects root folder - From the projects root folder run:
php artisan vendor:publish --tag=laravelroles
- (Optional permissions step) From the projects root folder run
sudo chmod -R ug+rwx storage bootstrap/cache
- From the projects root folder run
php artisan key:generate
- From the projects root folder run
php artisan migrate
- From the projects root folder run
composer dump-autoload
- From the projects root folder run
php artisan db:seed
- Compile the front end assets with npm steps or yarn steps.
- From the projects root folder run
npm install
- From the projects root folder run
npm run dev
ornpm run production
- You can watch assets with
npm run watch
- From the projects root folder run
yarn install
- From the projects root folder run
yarn run dev
oryarn run production
- You can watch assets with
yarn run watch
- 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
- From the projects root folder run
php artisan serve
- Open your web browser and go to
http://localhost
- Unverified - Level 0
- User - Level 1
- Administrator - Level 5
- view.users
- create.users
- edit.users
- delete.users
Password | Access | |
---|---|---|
user@user.com | password | User Access |
admin@admin.com | password | Admin Access |
+--------+---------------+----------------------------------------+---------------------------------+------------------------------------------------------------------------+----------------------------------------------+
| Domain | Method | URI | Name | Action | Middleware |
+--------+---------------+----------------------------------------+---------------------------------+------------------------------------------------------------------------+----------------------------------------------+
| | GET|HEAD | / | public.home | App\Http\Controllers\UserController@index | web,auth,activated |
| | GET|HEAD | _debugbar/assets/javascript | debugbar.assets.js | Barryvdh\Debugbar\Controllers\AssetController@js | Barryvdh\Debugbar\Middleware\DebugbarEnabled |
| | GET|HEAD | _debugbar/assets/stylesheets | debugbar.assets.css | Barryvdh\Debugbar\Controllers\AssetController@css | Barryvdh\Debugbar\Middleware\DebugbarEnabled |
| | DELETE | _debugbar/cache/{key}/{tags?} | debugbar.cache.delete | Barryvdh\Debugbar\Controllers\CacheController@delete | Barryvdh\Debugbar\Middleware\DebugbarEnabled |
| | GET|HEAD | _debugbar/clockwork/{id} | debugbar.clockwork | Barryvdh\Debugbar\Controllers\OpenHandlerController@clockwork | Barryvdh\Debugbar\Middleware\DebugbarEnabled |
| | GET|HEAD | _debugbar/open | debugbar.openhandler | Barryvdh\Debugbar\Controllers\OpenHandlerController@handle | Barryvdh\Debugbar\Middleware\DebugbarEnabled |
| | GET|HEAD | account | {username} | App\Http\Controllers\ProfilesController@account | web,auth,activated,currentUser |
| | GET|HEAD | activate | activate | App\Http\Controllers\Auth\ActivateController@initial | web,auth |
| | GET|HEAD | activate/{token} | authenticated.activate | App\Http\Controllers\Auth\ActivateController@activate | web,auth |
| | GET|HEAD | activation | authenticated.activation-resend | App\Http\Controllers\Auth\ActivateController@resend | web,auth |
| | GET|HEAD | activation-required | activation-required | App\Http\Controllers\Auth\ActivateController@activationRequired | web,auth,activated |
| | POST | avatar/upload | avatar.upload | App\Http\Controllers\ProfilesController@upload | web,auth,activated,currentUser |
| | POST | background/upload | background.upload | App\Http\Controllers\ProfilesController@uploadBackground | web,auth,activated,currentUser |
| | GET|POST|HEAD | broadcasting/auth | | Illuminate\Broadcasting\BroadcastController@authenticate | web |
| | GET|HEAD | exceeded | exceeded | App\Http\Controllers\Auth\ActivateController@exceeded | web,auth |
| | GET|HEAD | home | public.home | App\Http\Controllers\UserController@index | web,auth,activated |
| | GET|HEAD | images/profile/{id}/avatar/{image} | | App\Http\Controllers\ProfilesController@userProfileAvatar | web,auth,activated |
| | GET|HEAD | images/profile/{id}/background/{image} | | App\Http\Controllers\ProfilesController@userProfileBackgroundImage | web,auth,activated |
| | POST | login | | App\Http\Controllers\Auth\LoginController@login | web,guest |
| | GET|HEAD | login | login | App\Http\Controllers\Auth\LoginController@showLoginForm | web,guest |
| | GET|HEAD | logout | logout | App\Http\Controllers\Auth\LoginController@logout | web,auth,activated |
| | POST | logout | logout | App\Http\Controllers\Auth\LoginController@logout | web |
| | GET|HEAD | logs | | Rap2hpoutre\LaravelLogViewer\LogViewerController@index | web,auth,activated,role:admin |
| | GET|HEAD | material.min.css.template | | App\Http\Controllers\ThemesManagementController@template | web,auth |
| | 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 | | 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 | php | | App\Http\Controllers\AdminDetailsController@listPHPInfo | web,auth,activated,role:admin |
| | GET|HEAD | profile/create | profile.create | App\Http\Controllers\ProfilesController@create | web,auth,activated,currentUser |
| | GET|HEAD | profile/{profile} | profile.show | App\Http\Controllers\ProfilesController@show | web,auth,activated,currentUser |
| | PUT|PATCH | profile/{profile} | profile.update | App\Http\Controllers\ProfilesController@update | web,auth,activated,currentUser |
| | GET|HEAD | profile/{profile}/edit | profile.edit | App\Http\Controllers\ProfilesController@edit | web,auth,activated,currentUser |
| | GET|HEAD | profile/{username} | {username} | App\Http\Controllers\ProfilesController@show | web,auth,activated |
| | DELETE | profile/{username}/deleteUserAccount | {username} | App\Http\Controllers\ProfilesController@deleteUserAccount | web,auth,activated,currentUser |
| | POST | profile/{username}/updateAjax | {username} | App\Http\Controllers\ProfilesController@update | web,auth,activated,currentUser |
| | PUT | profile/{username}/updateUserAccount | {username} | App\Http\Controllers\ProfilesController@updateUserAccount | web,auth,activated,currentUser |
| | PUT | profile/{username}/updateUserPassword | {username} | App\Http\Controllers\ProfilesController@updateUserPassword | web,auth,activated,currentUser |
| | GET|HEAD | re-activate/{token} | user.reactivate | App\Http\Controllers\RestoreUserController@userReActivate | web |
| | GET|HEAD | register | register | App\Http\Controllers\Auth\RegisterController@showRegistrationForm | web,guest |
| | POST | register | | App\Http\Controllers\Auth\RegisterController@register | web,guest |
| | GET|HEAD | routes | | App\Http\Controllers\AdminDetailsController@listRoutes | web,auth,activated,role:admin |
| | GET|HEAD | social/handle/{provider} | social.handle | App\Http\Controllers\Auth\SocialController@getSocialHandle | web |
| | GET|HEAD | social/redirect/{provider} | social.redirect | App\Http\Controllers\Auth\SocialController@getSocialRedirect | web |
| | GET|HEAD | tasks | tasks.index | App\Http\Controllers\TasksController@index | web,auth,activated,currentUser |
| | POST | tasks | tasks.store | App\Http\Controllers\TasksController@store | web,auth,activated,currentUser |
| | GET|HEAD | tasks/create | tasks.create | App\Http\Controllers\TasksController@create | web,auth,activated,currentUser |
| | GET|HEAD | tasks/{task} | tasks.show | App\Http\Controllers\TasksController@show | web,auth,activated,currentUser |
| | PUT|PATCH | tasks/{task} | tasks.update | App\Http\Controllers\TasksController@update | web,auth,activated,currentUser |
| | DELETE | tasks/{task} | tasks.destroy | App\Http\Controllers\TasksController@destroy | web,auth,activated,currentUser |
| | GET|HEAD | tasks/{task}/edit | tasks.edit | App\Http\Controllers\TasksController@edit | web,auth,activated,currentUser |
| | POST | themes | themes.store | App\Http\Controllers\ThemesManagementController@store | web,auth,activated,role:admin |
| | GET|HEAD | themes | themes | App\Http\Controllers\ThemesManagementController@index | web,auth,activated,role:admin |
| | GET|HEAD | themes/create | themes.create | App\Http\Controllers\ThemesManagementController@create | web,auth,activated,role:admin |
| | GET|HEAD | themes/{theme} | themes.show | App\Http\Controllers\ThemesManagementController@show | web,auth,activated,role:admin |
| | DELETE | themes/{theme} | themes.destroy | App\Http\Controllers\ThemesManagementController@destroy | web,auth,activated,role:admin |
| | PUT|PATCH | themes/{theme} | themes.update | App\Http\Controllers\ThemesManagementController@update | web,auth,activated,role:admin |
| | GET|HEAD | themes/{theme}/edit | themes.edit | App\Http\Controllers\ThemesManagementController@edit | web,auth,activated,role:admin |
| | GET|HEAD | users | users | App\Http\Controllers\UsersManagementController@index | web,auth,activated,role:admin |
| | POST | users | users.store | App\Http\Controllers\UsersManagementController@store | web,auth,activated,role:admin |
| | GET|HEAD | users/create | create | App\Http\Controllers\UsersManagementController@create | web,auth,activated,role:admin |
| | GET|HEAD | users/deleted | deleted.index | App\Http\Controllers\SoftDeletesController@index | web,auth,activated,role:admin |
| | DELETE | users/deleted/{deleted} | deleted.destroy | App\Http\Controllers\SoftDeletesController@destroy | web,auth,activated,role:admin |
| | PUT|PATCH | users/deleted/{deleted} | deleted.update | App\Http\Controllers\SoftDeletesController@update | web,auth,activated,role:admin |
| | GET|HEAD | users/deleted/{deleted} | deleted.show | App\Http\Controllers\SoftDeletesController@show | web,auth,activated,role:admin |
| | DELETE | users/{user} | user.destroy | App\Http\Controllers\UsersManagementController@destroy | web,auth,activated,role:admin |
| | PUT|PATCH | users/{user} | users.update | App\Http\Controllers\UsersManagementController@update | web,auth,activated,role:admin |
| | GET|HEAD | users/{user} | users.show | App\Http\Controllers\UsersManagementController@show | web,auth,activated,role:admin |
| | GET|HEAD | users/{user}/edit | users.edit | App\Http\Controllers\UsersManagementController@edit | web,auth,activated,role:admin |
+--------+---------------+----------------------------------------+---------------------------------+------------------------------------------------------------------------+----------------------------------------------+
- Google Captcha API
- Facebook API
- Twitter API
- Google + API
- GitHub API
- YouTube API
- Twitch TV API
- Instagram API
- 37 Signals API
- See full list of providers: http://socialiteproviders.github.io
-
Go to http://socialiteproviders.github.io and select the provider to be added.
-
From the projects root folder in terminal run composer command to get the needed package.
- Example:
composer require socialiteproviders/twitch
-
From the projects root folder run
composer update
-
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'), ],
-
Add the API credentials to
/.env
- Example:
TWITCH_KEY=YOURKEYHERE TWITCH_SECRET=YOURSECRETHERE TWITCH_REDIRECT_URI=http://YOURWEBSITEURL.COM/social/handle/twitch
-
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>
- Use Laravel HTML Facade with Laravel Collective:
{!! HTML::link(route('social.redirect', ['provider' => 'twitch']), 'Twitch', array('class' => 'btn btn-lg btn-primary btn-block twitch')) !!}
-
Example .env
file:
APP_NAME=Laravel
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost
LOG_CHANNEL=stack
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel_material
DB_USERNAME=homestead
DB_PASSWORD=secret
BROADCAST_DRIVER=log
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_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME=''
EMAIL_EXCEPTION_ENABLED=false
EMAIL_EXCEPTION_FROM=email@email.com
EMAIL_EXCEPTION_TO='email1@gmail.com, email2@gmail.com'
EMAIL_EXCEPTION_CC=''
EMAIL_EXCEPTION_BCC=''
EMAIL_EXCEPTION_SUBJECT=''
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_ENRYPTION_KEY=
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
// 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_KEY=YOURGOOGLEMAPSkeyHERE
# https://console.developers.google.com/ - NEED OAUTH CREDS
GOOGLE_ID=YOURGOOGLEPLUSidHERE
GOOGLE_SECRET=YOURGOOGLEPLUSsecretHERE
GOOGLE_REDIRECT=http://yourwebsiteURLhere.com/social/handle/google
# https://www.google.com/recaptcha/admin#list
ENABLE_RECAPTCHA=true
RE_CAP_SITE=YOURGOOGLECAPTCHAsitekeyHERE
RE_CAP_SECRET=YOURGOOGLECAPTCHAsecretHERE
# https://developers.facebook.com/
FB_ID=YOURFACEBOOKidHERE
FB_SECRET=YOURFACEBOOKsecretHERE
FB_REDIRECT=http://yourwebsiteURLhere.com/social/handle/facebook
# https://apps.twitter.com/
TW_ID=YOURTWITTERidHERE
TW_SECRET=YOURTWITTERkeyHERE
TW_REDIRECT=http://yourwebsiteURLhere.com/social/handle/twitter
# https://github.com/settings/applications/new
GITHUB_ID=YOURIDHERE
GITHUB_SECRET=YOURSECRETHERE
GITHUB_URL=https://larablog.io/social/handle/github
# https://developers.google.com/youtube/v3/getting-started
YOUTUBE_KEY=YOURKEYHERE
YOUTUBE_SECRET=YOURSECRETHERE
YOUTUBE_REDIRECT_URI=https://larablog.io/social/handle/youtube
# http://www.twitch.tv/kraken/oauth2/clients/new
TWITCH_KEY=YOURKEYHERE
TWITCH_SECRET=YOURSECRETHERE
TWITCH_REDIRECT_URI=http://laravel-authentication.local/social/handle/twitch
# https://instagram.com/developer/register/
INSTAGRAM_KEY=YOURKEYHERE
INSTAGRAM_SECRET=YOURSECRETHERE
INSTAGRAM_REDIRECT_URI=http://laravel-authentication.local/social/handle/instagram
# https://basecamp.com/
# https://github.com/basecamp/basecamp-classic-api
37SIGNALS_KEY=YOURKEYHERE
37SIGNALS_SECRET=YOURSECRETHERE
37SIGNALS_REDIRECT_URI=http://laravel-authentication.local/social/handle/37signals
- Call Material Design Lite Dialog Box
mdl_dialog(trigger,close,dialog)
- The inputs are optional, the Defaults are as follows:
var trigger = trigger || document.querySelector('.dialog-button');
var close = close || document.querySelector('.dialog-close');
var dialog = dialog || document.querySelector('#dialog');
- Add the desired dialog view to your template view with:
@include('dialogs.dialog-save')
- Substitute with the desired dialog blade.
-
Options a. DELETE DIALOG OPTIONS You can override the delete dialog title and save button text by passing your variables, otherwise the defaults will display.
Example:
@include('dialogs.dialog-delete', ['dialogTitle' => 'Confirm Task Deletion', 'dialogSaveBtnText' => 'Delete'])
Give a table functionality with DataTables
- Within the
@section('template_scripts')
section call the view with:
@include('scripts.mdl-datatables')
- Add class
data-table
to your<table>
to instantiate it as a datatable. 3 You should add classesmdl-data-table
andmdl-js-data-table
for MDL styling (not required). - Optionally exclude/disable any column from being sortable by adding class
no-sort
to the<th>
of the column. - Optionally exclude/disable any column from being searchable by adding class
no-search
to the<th>
of the column.
Use Google Material Design Lite built in notificatons outlined below:
-
Include
@include('scripts.mdl-snackbar')
call in the@section('template_scripts')
section -
Include
@include('partials.mdl-snackbar')
in your template -
Call Snackbar/Toast using JavaScript: EXAMPLES BELOW
- Snackbar
var someActions = function(event) { document.querySelector('.mdl-snackbar-trigger').style.backgroundColor = 'red'; };
mdl_snackbar({ msg: 'Profile Updated', timout: 4000, // OPTIONAL snackBarTrigger: '.mdl-snackbar-trigger', // OPTIONAL actionText: 'Undo', // OPTIONAL actionHandler: someActions, // OPTIONAL });
- Toast
mdl_snackbar({ msg: 'Profile Updated', timout: 4000, snackBarTrigger: '.mdl-snackbar-trigger' });
- EXAMPLE CTA TO SnackBar/Toast
<button class="mdl-button mdl-js-button mdl-button--raised mdl-snackbar-trigger" type="button">Show Toast</button>
laravel-material-design/
βββ .env.example
βββ .env.travis
βββ .gitattributes
βββ .gitignore
βββ .travis.yml
βββ LICENSE
βββ README.md
βββ 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
βΒ Β βΒ Β βΒ Β βββ TasksController.php
βΒ Β βΒ Β βΒ Β βββ ThemesManagementController.php
βΒ Β βΒ Β βΒ Β βββ UserController.php
βΒ Β βΒ Β βΒ Β βββ UsersManagementController.php
βΒ Β βΒ Β βΒ Β βββ WelcomeController.php
βΒ Β βΒ Β βββ Kernel.php
βΒ Β βΒ Β βββ Middleware
βΒ Β βΒ Β βΒ Β βββ Authenticate.php
βΒ Β βΒ Β βΒ Β βββ CheckCurrentUser.php
βΒ Β βΒ Β βΒ Β βββ CheckIsUserActivated.php
βΒ Β βΒ Β βΒ Β βββ EncryptCookies.php
βΒ Β βΒ Β βΒ Β βββ RedirectIfAuthenticated.php
βΒ Β βΒ Β βΒ Β βββ TrimStrings.php
βΒ Β βΒ Β βΒ Β βββ VerifyCsrfToken.php
βΒ Β βΒ Β βββ ViewComposers
βΒ Β βΒ Β βββ ThemeComposer.php
βΒ Β βΒ Β βββ UsersComposer.php
βΒ Β βββ Logic
βΒ Β βΒ Β βββ Activation
βΒ Β βΒ Β βΒ Β βββ ActivationRepository.php
βΒ Β βΒ Β βββ Macros
βΒ Β βΒ Β βββ HtmlMacros.php
βΒ Β βββ Mail
βΒ Β βΒ Β βββ ExceptionOccured.php
βΒ Β βββ Models
βΒ Β βΒ Β βββ Activation.php
βΒ Β βΒ Β βββ Profile.php
βΒ Β βΒ Β βββ Social.php
βΒ Β βΒ Β βββ Task.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
βββ config
βΒ Β βββ app.php
βΒ Β βββ auth.php
βΒ Β βββ broadcasting.php
βΒ Β βββ cache.php
βΒ Β βββ database.php
βΒ Β βββ debugbar.php
βΒ Β βββ exceptions.php
βΒ Β βββ filesystems.php
βΒ Β βββ gravatar.php
βΒ Β βββ hashing.php
βΒ Β βββ mail.php
βΒ Β βββ queue.php
βΒ Β βββ roles.php
βΒ Β βββ services.php
βΒ Β βββ session.php
βΒ Β βββ settings.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_05_20_095210_create_tasks_table.php
βΒ Β βββ seeds
βΒ Β βββ ConnectRelationshipsSeeder.php
βΒ Β βββ DatabaseSeeder.php
βΒ Β βββ PermissionsTableSeeder.php
βΒ Β βββ RolesTableSeeder.php
βΒ Β βββ ThemesTableSeeder.php
βΒ Β βββ UsersTableSeeder.php
βββ favicon.png
βββ license.svg
βββ package.json
βββ phpunit.xml
βββ public
βΒ Β βββ .htaccess
βΒ Β βββ css
βΒ Β βΒ Β βββ app.css
βΒ Β βΒ Β βββ mdl-themes
βΒ Β βΒ Β βββ material-grid.css
βΒ Β βΒ Β βββ material-grid.min.css
βΒ Β βΒ Β βββ material.amber-blue.min.css
βΒ Β βΒ Β βββ material.amber-cyan.min.css
βΒ Β βΒ Β βββ material.amber-deep_orange.min.css
βΒ Β βΒ Β βββ material.amber-deep_purple.min.css
βΒ Β βΒ Β βββ material.amber-green.min.css
βΒ Β βΒ Β βββ material.amber-indigo.min.css
βΒ Β βΒ Β βββ material.amber-light_blue.min.css
βΒ Β βΒ Β βββ material.amber-light_green.min.css
βΒ Β βΒ Β βββ material.amber-lime.min.css
βΒ Β βΒ Β βββ material.amber-orange.min.css
βΒ Β βΒ Β βββ material.amber-pink.min.css
βΒ Β βΒ Β βββ material.amber-purple.min.css
βΒ Β βΒ Β βββ material.amber-red.min.css
βΒ Β βΒ Β βββ material.amber-teal.min.css
βΒ Β βΒ Β βββ material.amber-yellow.min.css
βΒ Β βΒ Β βββ material.blue-amber.min.css
βΒ Β βΒ Β βββ material.blue-cyan.min.css
βΒ Β βΒ Β βββ material.blue-deep_orange.min.css
βΒ Β βΒ Β βββ material.blue-deep_purple.min.css
βΒ Β βΒ Β βββ material.blue-green.min.css
βΒ Β βΒ Β βββ material.blue-indigo.min.css
βΒ Β βΒ Β βββ material.blue-light_blue.min.css
βΒ Β βΒ Β βββ material.blue-light_green.min.css
βΒ Β βΒ Β βββ material.blue-lime.min.css
βΒ Β βΒ Β βββ material.blue-orange.min.css
βΒ Β βΒ Β βββ material.blue-pink.min.css
βΒ Β βΒ Β βββ material.blue-purple.min.css
βΒ Β βΒ Β βββ material.blue-red.min.css
βΒ Β βΒ Β βββ material.blue-teal.min.css
βΒ Β βΒ Β βββ material.blue-yellow.min.css
βΒ Β βΒ Β βββ material.blue_grey-amber.min.css
βΒ Β βΒ Β βββ material.blue_grey-blue.min.css
βΒ Β βΒ Β βββ material.blue_grey-cyan.min.css
βΒ Β βΒ Β βββ material.blue_grey-deep_orange.min.css
βΒ Β βΒ Β βββ material.blue_grey-deep_purple.min.css
βΒ Β βΒ Β βββ material.blue_grey-green.min.css
βΒ Β βΒ Β βββ material.blue_grey-indigo.min.css
βΒ Β βΒ Β βββ material.blue_grey-light_blue.min.css
βΒ Β βΒ Β βββ material.blue_grey-light_green.min.css
βΒ Β βΒ Β βββ material.blue_grey-lime.min.css
βΒ Β βΒ Β βββ material.blue_grey-orange.min.css
βΒ Β βΒ Β βββ material.blue_grey-pink.min.css
βΒ Β βΒ Β βββ material.blue_grey-purple.min.css
βΒ Β βΒ Β βββ material.blue_grey-red.min.css
βΒ Β βΒ Β βββ material.blue_grey-teal.min.css
βΒ Β βΒ Β βββ material.blue_grey-yellow.min.css
βΒ Β βΒ Β βββ material.brown-amber.min.css
βΒ Β βΒ Β βββ material.brown-blue.min.css
βΒ Β βΒ Β βββ material.brown-cyan.min.css
βΒ Β βΒ Β βββ material.brown-deep_orange.min.css
βΒ Β βΒ Β βββ material.brown-deep_purple.min.css
βΒ Β βΒ Β βββ material.brown-green.min.css
βΒ Β βΒ Β βββ material.brown-indigo.min.css
βΒ Β βΒ Β βββ material.brown-light_blue.min.css
βΒ Β βΒ Β βββ material.brown-light_green.min.css
βΒ Β βΒ Β βββ material.brown-lime.min.css
βΒ Β βΒ Β βββ material.brown-orange.min.css
βΒ Β βΒ Β βββ material.brown-pink.min.css
βΒ Β βΒ Β βββ material.brown-purple.min.css
βΒ Β βΒ Β βββ material.brown-red.min.css
βΒ Β βΒ Β βββ material.brown-teal.min.css
βΒ Β βΒ Β βββ material.brown-yellow.min.css
βΒ Β βΒ Β βββ material.css
βΒ Β βΒ Β βββ material.cyan-amber.min.css
βΒ Β βΒ Β βββ material.cyan-blue.min.css
βΒ Β βΒ Β βββ material.cyan-deep_orange.min.css
βΒ Β βΒ Β βββ material.cyan-deep_purple.min.css
βΒ Β βΒ Β βββ material.cyan-green.min.css
βΒ Β βΒ Β βββ material.cyan-indigo.min.css
βΒ Β βΒ Β βββ material.cyan-light_blue.min.css
βΒ Β βΒ Β βββ material.cyan-light_green.min.css
βΒ Β βΒ Β βββ material.cyan-lime.min.css
βΒ Β βΒ Β βββ material.cyan-orange.min.css
βΒ Β βΒ Β βββ material.cyan-pink.min.css
βΒ Β βΒ Β βββ material.cyan-purple.min.css
βΒ Β βΒ Β βββ material.cyan-red.min.css
βΒ Β βΒ Β βββ material.cyan-teal.min.css
βΒ Β βΒ Β βββ material.cyan-yellow.min.css
βΒ Β βΒ Β βββ material.deep_orange-amber.min.css
βΒ Β βΒ Β βββ material.deep_orange-blue.min.css
βΒ Β βΒ Β βββ material.deep_orange-cyan.min.css
βΒ Β βΒ Β βββ material.deep_orange-deep_purple.min.css
βΒ Β βΒ Β βββ material.deep_orange-green.min.css
βΒ Β βΒ Β βββ material.deep_orange-indigo.min.css
βΒ Β βΒ Β βββ material.deep_orange-light_blue.min.css
βΒ Β βΒ Β βββ material.deep_orange-light_green.min.css
βΒ Β βΒ Β βββ material.deep_orange-lime.min.css
βΒ Β βΒ Β βββ material.deep_orange-orange.min.css
βΒ Β βΒ Β βββ material.deep_orange-pink.min.css
βΒ Β βΒ Β βββ material.deep_orange-purple.min.css
βΒ Β βΒ Β βββ material.deep_orange-red.min.css
βΒ Β βΒ Β βββ material.deep_orange-teal.min.css
βΒ Β βΒ Β βββ material.deep_orange-yellow.min.css
βΒ Β βΒ Β βββ material.deep_purple-amber.min.css
βΒ Β βΒ Β βββ material.deep_purple-blue.min.css
βΒ Β βΒ Β βββ material.deep_purple-cyan.min.css
βΒ Β βΒ Β βββ material.deep_purple-deep_orange.min.css
βΒ Β βΒ Β βββ material.deep_purple-green.min.css
βΒ Β βΒ Β βββ material.deep_purple-indigo.min.css
βΒ Β βΒ Β βββ material.deep_purple-light_blue.min.css
βΒ Β βΒ Β βββ material.deep_purple-light_green.min.css
βΒ Β βΒ Β βββ material.deep_purple-lime.min.css
βΒ Β βΒ Β βββ material.deep_purple-orange.min.css
βΒ Β βΒ Β βββ material.deep_purple-pink.min.css
βΒ Β βΒ Β βββ material.deep_purple-purple.min.css
βΒ Β βΒ Β βββ material.deep_purple-red.min.css
βΒ Β βΒ Β βββ material.deep_purple-teal.min.css
βΒ Β βΒ Β βββ material.deep_purple-yellow.min.css
βΒ Β βΒ Β βββ material.green-amber.min.css
βΒ Β βΒ Β βββ material.green-blue.min.css
βΒ Β βΒ Β βββ material.green-cyan.min.css
βΒ Β βΒ Β βββ material.green-deep_orange.min.css
βΒ Β βΒ Β βββ material.green-deep_purple.min.css
βΒ Β βΒ Β βββ material.green-indigo.min.css
βΒ Β βΒ Β βββ material.green-light_blue.min.css
βΒ Β βΒ Β βββ material.green-light_green.min.css
βΒ Β βΒ Β βββ material.green-lime.min.css
βΒ Β βΒ Β βββ material.green-orange.min.css
βΒ Β βΒ Β βββ material.green-pink.min.css
βΒ Β βΒ Β βββ material.green-purple.min.css
βΒ Β βΒ Β βββ material.green-red.min.css
βΒ Β βΒ Β βββ material.green-teal.min.css
βΒ Β βΒ Β βββ material.green-yellow.min.css
βΒ Β βΒ Β βββ material.grey-amber.min.css
βΒ Β βΒ Β βββ material.grey-blue.min.css
βΒ Β βΒ Β βββ material.grey-cyan.min.css
βΒ Β βΒ Β βββ material.grey-deep_orange.min.css
βΒ Β βΒ Β βββ material.grey-deep_purple.min.css
βΒ Β βΒ Β βββ material.grey-green.min.css
βΒ Β βΒ Β βββ material.grey-indigo.min.css
βΒ Β βΒ Β βββ material.grey-light_blue.min.css
βΒ Β βΒ Β βββ material.grey-light_green.min.css
βΒ Β βΒ Β βββ material.grey-lime.min.css
βΒ Β βΒ Β βββ material.grey-orange.min.css
βΒ Β βΒ Β βββ material.grey-pink.min.css
βΒ Β βΒ Β βββ material.grey-purple.min.css
βΒ Β βΒ Β βββ material.grey-red.min.css
βΒ Β βΒ Β βββ material.grey-teal.min.css
βΒ Β βΒ Β βββ material.grey-yellow.min.css
βΒ Β βΒ Β βββ material.indigo-amber.min.css
βΒ Β βΒ Β βββ material.indigo-blue.min.css
βΒ Β βΒ Β βββ material.indigo-cyan.min.css
βΒ Β βΒ Β βββ material.indigo-deep_orange.min.css
βΒ Β βΒ Β βββ material.indigo-deep_purple.min.css
βΒ Β βΒ Β βββ material.indigo-green.min.css
βΒ Β βΒ Β βββ material.indigo-light_blue.min.css
βΒ Β βΒ Β βββ material.indigo-light_green.min.css
βΒ Β βΒ Β βββ material.indigo-lime.min.css
βΒ Β βΒ Β βββ material.indigo-orange.min.css
βΒ Β βΒ Β βββ material.indigo-pink.min.css
βΒ Β βΒ Β βββ material.indigo-purple.min.css
βΒ Β βΒ Β βββ material.indigo-red.min.css
βΒ Β βΒ Β βββ material.indigo-teal.min.css
βΒ Β βΒ Β βββ material.indigo-yellow.min.css
βΒ Β βΒ Β βββ material.light_blue-amber.min.css
βΒ Β βΒ Β βββ material.light_blue-blue.min.css
βΒ Β βΒ Β βββ material.light_blue-cyan.min.css
βΒ Β βΒ Β βββ material.light_blue-deep_orange.min.css
βΒ Β βΒ Β βββ material.light_blue-deep_purple.min.css
βΒ Β βΒ Β βββ material.light_blue-green.min.css
βΒ Β βΒ Β βββ material.light_blue-indigo.min.css
βΒ Β βΒ Β βββ material.light_blue-light_green.min.css
βΒ Β βΒ Β βββ material.light_blue-lime.min.css
βΒ Β βΒ Β βββ material.light_blue-orange.min.css
βΒ Β βΒ Β βββ material.light_blue-pink.min.css
βΒ Β βΒ Β βββ material.light_blue-purple.min.css
βΒ Β βΒ Β βββ material.light_blue-red.min.css
βΒ Β βΒ Β βββ material.light_blue-teal.min.css
βΒ Β βΒ Β βββ material.light_blue-yellow.min.css
βΒ Β βΒ Β βββ material.light_green-amber.min.css
βΒ Β βΒ Β βββ material.light_green-blue.min.css
βΒ Β βΒ Β βββ material.light_green-cyan.min.css
βΒ Β βΒ Β βββ material.light_green-deep_orange.min.css
βΒ Β βΒ Β βββ material.light_green-deep_purple.min.css
βΒ Β βΒ Β βββ material.light_green-green.min.css
βΒ Β βΒ Β βββ material.light_green-indigo.min.css
βΒ Β βΒ Β βββ material.light_green-light_blue.min.css
βΒ Β βΒ Β βββ material.light_green-lime.min.css
βΒ Β βΒ Β βββ material.light_green-orange.min.css
βΒ Β βΒ Β βββ material.light_green-pink.min.css
βΒ Β βΒ Β βββ material.light_green-purple.min.css
βΒ Β βΒ Β βββ material.light_green-red.min.css
βΒ Β βΒ Β βββ material.light_green-teal.min.css
βΒ Β βΒ Β βββ material.light_green-yellow.min.css
βΒ Β βΒ Β βββ material.lime-amber.min.css
βΒ Β βΒ Β βββ material.lime-blue.min.css
βΒ Β βΒ Β βββ material.lime-cyan.min.css
βΒ Β βΒ Β βββ material.lime-deep_orange.min.css
βΒ Β βΒ Β βββ material.lime-deep_purple.min.css
βΒ Β βΒ Β βββ material.lime-green.min.css
βΒ Β βΒ Β βββ material.lime-indigo.min.css
βΒ Β βΒ Β βββ material.lime-light_blue.min.css
βΒ Β βΒ Β βββ material.lime-light_green.min.css
βΒ Β βΒ Β βββ material.lime-orange.min.css
βΒ Β βΒ Β βββ material.lime-pink.min.css
βΒ Β βΒ Β βββ material.lime-purple.min.css
βΒ Β βΒ Β βββ material.lime-red.min.css
βΒ Β βΒ Β βββ material.lime-teal.min.css
βΒ Β βΒ Β βββ material.lime-yellow.min.css
βΒ Β βΒ Β βββ material.min.css
βΒ Β βΒ Β βββ material.orange-amber.min.css
βΒ Β βΒ Β βββ material.orange-blue.min.css
βΒ Β βΒ Β βββ material.orange-cyan.min.css
βΒ Β βΒ Β βββ material.orange-deep_orange.min.css
βΒ Β βΒ Β βββ material.orange-deep_purple.min.css
βΒ Β βΒ Β βββ material.orange-green.min.css
βΒ Β βΒ Β βββ material.orange-indigo.min.css
βΒ Β βΒ Β βββ material.orange-light_blue.min.css
βΒ Β βΒ Β βββ material.orange-light_green.min.css
βΒ Β βΒ Β βββ material.orange-lime.min.css
βΒ Β βΒ Β βββ material.orange-pink.min.css
βΒ Β βΒ Β βββ material.orange-purple.min.css
βΒ Β βΒ Β βββ material.orange-red.min.css
βΒ Β βΒ Β βββ material.orange-teal.min.css
βΒ Β βΒ Β βββ material.orange-yellow.min.css
βΒ Β βΒ Β βββ material.pink-amber.min.css
βΒ Β βΒ Β βββ material.pink-blue.min.css
βΒ Β βΒ Β βββ material.pink-cyan.min.css
βΒ Β βΒ Β βββ material.pink-deep_orange.min.css
βΒ Β βΒ Β βββ material.pink-deep_purple.min.css
βΒ Β βΒ Β βββ material.pink-green.min.css
βΒ Β βΒ Β βββ material.pink-indigo.min.css
βΒ Β βΒ Β βββ material.pink-light_blue.min.css
βΒ Β βΒ Β βββ material.pink-light_green.min.css
βΒ Β βΒ Β βββ material.pink-lime.min.css
βΒ Β βΒ Β βββ material.pink-orange.min.css
βΒ Β βΒ Β βββ material.pink-purple.min.css
βΒ Β βΒ Β βββ material.pink-red.min.css
βΒ Β βΒ Β βββ material.pink-teal.min.css
βΒ Β βΒ Β βββ material.pink-yellow.min.css
βΒ Β βΒ Β βββ material.purple-amber.min.css
βΒ Β βΒ Β βββ material.purple-blue.min.css
βΒ Β βΒ Β βββ material.purple-cyan.min.css
βΒ Β βΒ Β βββ material.purple-deep_orange.min.css
βΒ Β βΒ Β βββ material.purple-deep_purple.min.css
βΒ Β βΒ Β βββ material.purple-green.min.css
βΒ Β βΒ Β βββ material.purple-indigo.min.css
βΒ Β βΒ Β βββ material.purple-light_blue.min.css
βΒ Β βΒ Β βββ material.purple-light_green.min.css
βΒ Β βΒ Β βββ material.purple-lime.min.css
βΒ Β βΒ Β βββ material.purple-orange.min.css
βΒ Β βΒ Β βββ material.purple-pink.min.css
βΒ Β βΒ Β βββ material.purple-red.min.css
βΒ Β βΒ Β βββ material.purple-teal.min.css
βΒ Β βΒ Β βββ material.purple-yellow.min.css
βΒ Β βΒ Β βββ material.red-amber.min.css
βΒ Β βΒ Β βββ material.red-blue.min.css
βΒ Β βΒ Β βββ material.red-cyan.min.css
βΒ Β βΒ Β βββ material.red-deep_orange.min.css
βΒ Β βΒ Β βββ material.red-deep_purple.min.css
βΒ Β βΒ Β βββ material.red-green.min.css
βΒ Β βΒ Β βββ material.red-indigo.min.css
βΒ Β βΒ Β βββ material.red-light_blue.min.css
βΒ Β βΒ Β βββ material.red-light_green.min.css
βΒ Β βΒ Β βββ material.red-lime.min.css
βΒ Β βΒ Β βββ material.red-orange.min.css
βΒ Β βΒ Β βββ material.red-pink.min.css
βΒ Β βΒ Β βββ material.red-purple.min.css
βΒ Β βΒ Β βββ material.red-teal.min.css
βΒ Β βΒ Β βββ material.red-yellow.min.css
βΒ Β βΒ Β βββ material.teal-amber.min.css
βΒ Β βΒ Β βββ material.teal-blue.min.css
βΒ Β βΒ Β βββ material.teal-cyan.min.css
βΒ Β βΒ Β βββ material.teal-deep_orange.min.css
βΒ Β βΒ Β βββ material.teal-deep_purple.min.css
βΒ Β βΒ Β βββ material.teal-green.min.css
βΒ Β βΒ Β βββ material.teal-indigo.min.css
βΒ Β βΒ Β βββ material.teal-light_blue.min.css
βΒ Β βΒ Β βββ material.teal-light_green.min.css
βΒ Β βΒ Β βββ material.teal-lime.min.css
βΒ Β βΒ Β βββ material.teal-orange.min.css
βΒ Β βΒ Β βββ material.teal-pink.min.css
βΒ Β βΒ Β βββ material.teal-purple.min.css
βΒ Β βΒ Β βββ material.teal-red.min.css
βΒ Β βΒ Β βββ material.teal-yellow.min.css
βΒ Β βΒ Β βββ material.yellow-amber.min.css
βΒ Β βΒ Β βββ material.yellow-blue.min.css
βΒ Β βΒ Β βββ material.yellow-cyan.min.css
βΒ Β βΒ Β βββ material.yellow-deep_orange.min.css
βΒ Β βΒ Β βββ material.yellow-deep_purple.min.css
βΒ Β βΒ Β βββ material.yellow-green.min.css
βΒ Β βΒ Β βββ material.yellow-indigo.min.css
βΒ Β βΒ Β βββ material.yellow-light_blue.min.css
βΒ Β βΒ Β βββ material.yellow-light_green.min.css
βΒ Β βΒ Β βββ material.yellow-lime.min.css
βΒ Β βΒ Β βββ material.yellow-orange.min.css
βΒ Β βΒ Β βββ material.yellow-pink.min.css
βΒ Β βΒ Β βββ material.yellow-purple.min.css
βΒ Β βΒ Β βββ material.yellow-red.min.css
βΒ Β βΒ Β βββ material.yellow-teal.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
βΒ Β βΒ Β βββ weather-icons
βΒ Β βΒ Β βββ WeatherIcons-Regular.otf
βΒ Β βΒ Β βββ weathericons-regular-webfont.eot
βΒ Β βΒ Β βββ weathericons-regular-webfont.svg
βΒ Β βΒ Β βββ weathericons-regular-webfont.ttf
βΒ Β βΒ Β βββ weathericons-regular-webfont.woff
βΒ Β βββ images
βΒ Β βΒ Β βββ buffer.svg
βΒ Β βΒ Β βββ default-user-bg.png
βΒ Β βΒ Β βββ tick-mask.svg
βΒ Β βΒ Β βββ tick.svg
βΒ Β βΒ Β βββ wink.png
βΒ Β βΒ Β βββ wink.svg
βΒ Β βββ index.php
βΒ Β βββ js
βΒ Β βΒ Β βββ app.js
βΒ Β βΒ Β βββ mdl.js
βΒ Β βββ mix-manifest.json
βΒ Β βββ robots.txt
βΒ Β βββ web.config
βββ resources
βΒ Β βββ assets
βΒ Β βΒ Β βββ js
βΒ Β βΒ Β βΒ Β βββ app.js
βΒ Β βΒ Β βΒ Β βββ bootstrap.js
βΒ Β βΒ Β βΒ Β βββ components
βΒ Β βΒ Β βΒ Β βΒ Β βββ Example.vue
βΒ Β βΒ Β βΒ Β βββ laravel-mdl
βΒ Β βΒ Β βΒ Β βββ alerts.js
βΒ Β βΒ Β βΒ Β βββ dialogs.js
βΒ Β βΒ Β βΒ Β βββ jQuery.animate-bg.js
βΒ Β βΒ Β βΒ Β βββ jQuery.simpleWeather.js
βΒ Β βΒ Β βΒ Β βββ mdl-colorwheel.js
βΒ Β βΒ Β βΒ Β βββ mdl-datatables.js
βΒ Β βΒ Β βΒ Β βββ mdl-selectfield.js
βΒ Β βΒ Β βΒ Β βββ mdl-snackbars.js
βΒ Β βΒ Β βΒ Β βββ select.js
βΒ Β βΒ Β βΒ Β βββ spinners.js
βΒ Β βΒ Β βββ sass
βΒ Β βΒ Β βββ app.scss
βΒ Β βΒ Β βββ components
βΒ Β βΒ Β βΒ Β βββ _alerts.scss
βΒ Β βΒ Β βΒ Β βββ _avatar.scss
βΒ Β βΒ Β βΒ Β βββ _badges.scss
βΒ Β βΒ Β βΒ Β βββ _breadcrumbs.scss
βΒ Β βΒ Β βΒ Β βββ _cards.scss
βΒ Β βΒ Β βΒ Β βββ _chips.scss
βΒ Β βΒ Β βΒ Β βββ _dialogs.scss
βΒ Β βΒ Β βΒ Β βββ _dropzone.scss
βΒ Β βΒ Β βΒ Β βββ _inputs.scss
βΒ Β βΒ Β βΒ Β βββ _labels.scss
βΒ Β βΒ Β βΒ Β βββ _lists.scss
βΒ Β βΒ Β βΒ Β βββ _material-icons.scss
βΒ Β βΒ Β βΒ Β βββ _mdl-color-wheel.scss
βΒ Β βΒ Β βΒ Β βββ _mdl-selectfield.scss
βΒ Β βΒ Β βΒ Β βββ _mdl-tabs.scss
βΒ Β βΒ Β βΒ Β βββ _mdl-toggle.scss
βΒ Β βΒ Β βΒ Β βββ _select.scss
βΒ Β βΒ Β βΒ Β βββ _social-icons.scss
βΒ Β βΒ Β βΒ Β βββ _spinners.scss
βΒ Β βΒ Β βΒ Β βββ _tables.scss
βΒ Β βΒ Β βΒ Β βββ _weather-card.scss
βΒ Β βΒ Β βΒ Β βββ weather-icons
βΒ Β βΒ Β βΒ Β βββ icon-classes
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-beaufort.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-day.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-direction.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-misc.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-moon-aliases.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-moon.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-neutral.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-night.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-time.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-wind-aliases.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-wind-degrees.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ classes-wind.scss
βΒ Β βΒ Β βΒ Β βββ icon-variables
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-beaufort.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-day.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-direction.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-misc.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-moon.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-neutral.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-night.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-time.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ variables-wind-names.scss
βΒ Β βΒ Β βΒ Β βββ mappings
βΒ Β βΒ Β βΒ Β βΒ Β βββ simpleweather-js.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ wi-forecast-io.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ wi-owm.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ wi-wmo4680.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ wi-wunderground.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ wi-yahoo.scss
βΒ Β βΒ Β βΒ Β βββ weather-icons-classes.scss
βΒ Β βΒ Β βΒ Β βββ weather-icons-core.scss
βΒ Β βΒ Β βΒ Β βββ weather-icons-variables.scss
βΒ Β βΒ Β βΒ Β βββ weather-icons-wind.min.scss
βΒ Β βΒ Β βΒ Β βββ weather-icons-wind.scss
βΒ Β βΒ Β βΒ Β βββ weather-icons.min.scss
βΒ Β βΒ Β βΒ Β βββ weather-icons.scss
βΒ Β βΒ Β βββ layouts
βΒ Β βΒ Β βΒ Β βββ _auth.scss
βΒ Β βΒ Β βΒ Β βββ _dashboard.scss
βΒ Β βΒ Β βββ original
βΒ Β βΒ Β βΒ Β βββ _badges.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
βΒ Β βΒ Β βΒ Β βββ _variables.scss
βΒ Β βΒ Β βΒ Β βββ _wells.scss
βΒ Β βΒ Β βΒ Β βββ app.scss
βΒ Β βΒ Β βββ partials
βΒ Β βΒ Β βββ _base.scss
βΒ Β βΒ Β βββ _demo.scss
βΒ Β βΒ Β βββ _helpers.scss
βΒ Β βΒ Β βββ _mixins.scss
βΒ Β βΒ Β βββ _typography.scss
βΒ Β βΒ Β βββ _variables.scss
βΒ Β βββ lang
βΒ Β βΒ Β βββ en
βΒ Β βΒ Β βββ auth.php
βΒ Β βΒ Β βββ dialogs.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
βΒ Β βββ cards
βΒ Β βΒ Β βββ check-list-card.blade.php
βΒ Β βΒ Β βββ hero-image-card.blade.php
βΒ Β βΒ Β βββ user-profile-card.blade.php
βΒ Β βΒ Β βββ weather-card.blade.php
βΒ Β βββ dialogs
βΒ Β βΒ Β βββ dialog-delete.blade.php
βΒ Β βΒ Β βββ dialog-restore.blade.php
βΒ Β βΒ Β βββ dialog-save.blade.php
βΒ Β βββ emails
βΒ Β βΒ Β βββ exception.blade.php
βΒ Β βββ errors
βΒ Β βΒ Β βββ 403.blade.php
βΒ Β βΒ Β βββ 404.blade.php
βΒ Β βΒ Β βββ 500.blade.php
βΒ Β βΒ Β βββ 503.blade.php
βΒ Β βΒ Β βββ general.blade.php
βΒ Β βββ home.blade.php
βΒ Β βββ layouts
βΒ Β βΒ Β βββ app.blade.php
βΒ Β βΒ Β βββ auth.blade.php
βΒ Β βΒ Β βββ dashboard.blade.php
βΒ Β βββ modals
βΒ Β βΒ Β βββ modal-delete.blade.php
βΒ Β βΒ Β βββ modal-form.blade.php
βΒ Β βΒ Β βββ modal-save.blade.php
βΒ Β βββ pages
βΒ Β βΒ Β βββ admin
βΒ Β βΒ Β βΒ Β βββ home.blade.php
βΒ Β βΒ Β βΒ Β βββ php-details.blade.php
βΒ Β βΒ Β βΒ Β βββ route-details.blade.php
βΒ Β βΒ Β βββ status.blade.php
βΒ Β βΒ Β βββ user
βΒ Β βΒ Β βββ home.blade.php
βΒ Β βββ panels
βΒ Β βΒ Β βββ welcome-panel.blade.php
βΒ Β βββ partials
βΒ Β βΒ Β βββ account-nav.blade.php
βΒ Β βΒ Β βββ drawer-nav.blade.php
βΒ Β βΒ Β βββ errors.blade.php
βΒ Β βΒ Β βββ form-status-ajax.blade.php
βΒ Β βΒ Β βββ form-status.blade.php
βΒ Β βΒ Β βββ header-nav.blade.php
βΒ Β βΒ Β βββ mdl-filter.blade.php
βΒ Β βΒ Β βββ mdl-highlighter.blade.php
βΒ Β βΒ Β βββ mdl-search.blade.php
βΒ Β βΒ Β βββ mdl-snackbar.blade.php
βΒ Β βΒ Β βββ nav.blade.php
βΒ Β βΒ Β βββ search-bar.blade.php
βΒ Β βΒ Β βββ socials-icons.blade.php
βΒ Β βΒ Β βββ socials.blade.php
βΒ Β βΒ Β βββ status-panel.blade.php
βΒ Β βΒ Β βββ status.blade.php
βΒ Β βββ profiles
βΒ Β βΒ Β βββ account.blade.php
βΒ Β βΒ Β βββ edit.blade.php
βΒ Β βΒ Β βββ show.blade.php
βΒ Β βββ scripts
βΒ Β βΒ Β βββ check-changed.blade.php
βΒ Β βΒ Β βββ datatables.blade.php
βΒ Β βΒ Β βββ delete-modal-script.blade.php
βΒ Β βΒ Β βββ filter-data-script.blade.php
βΒ Β βΒ Β βββ form-modal-script.blade.php
βΒ Β βΒ Β βββ gmaps-address-lookup-api3.blade.php
βΒ Β βΒ Β βββ google-maps-geocode-and-map.blade.php
βΒ Β βΒ Β βββ highlighter-script.blade.php
βΒ Β βΒ Β βββ html5-password-match-check.blade.php
βΒ Β βΒ Β βββ mdl-datatables.blade.php
βΒ Β βΒ Β βββ mdl-file-upload.blade.php
βΒ Β βΒ Β βββ mdl-required-input-fix.blade.php
βΒ Β βΒ Β βββ mdl-save-ajax.blade.php
βΒ Β βΒ Β βββ mdl-select.blade.php
βΒ Β βΒ Β βββ mdl-snackbar.blade.php
βΒ Β βΒ Β βββ save-modal-script.blade.php
βΒ Β βΒ Β βββ toggleStatus.blade.php
βΒ Β βΒ Β βββ tooltips.blade.php
βΒ Β βΒ Β βββ weather.blade.php
βΒ Β βββ tasks
βΒ Β βΒ Β βββ create.blade.php
βΒ Β βΒ Β βββ edit.blade.php
βΒ Β βΒ Β βββ filtered.blade.php
βΒ Β βΒ Β βββ index.blade.php
βΒ Β βΒ Β βββ partials
βΒ Β βΒ Β βββ create-task.blade.php
βΒ Β βΒ Β βββ edit-task.blade.php
βΒ Β βΒ Β βββ task-row.blade.php
βΒ Β βΒ Β βββ task-tab.blade.php
βΒ Β βββ themesmanagement
βΒ Β βΒ Β βββ add-theme.blade.php
βΒ Β βΒ Β βββ edit-theme.blade.php
βΒ Β βΒ Β βββ show-theme.blade.php
βΒ Β βΒ Β βββ show-themes.blade.php
βΒ Β βΒ Β βββ template.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'
- http://laravel.com/docs/5.6/authentication
- http://laravel.com/docs/5.6/authorization
- http://laravel.com/docs/5.6/routing
- http://laravel.com/docs/5.6/schema
- https://laravelcollective.com/docs/5.5/html
- http://laravel.com/docs/5.6/authentication
- http://laravel.com/docs/5.6/authorization
- http://laravel.com/docs/5.6/routing
Before opening an issue there are a couple of considerations:
- A star on this project shows support and is way to say thank you to all the contributors. If you open an issue without a star, your issue may be closed without consideration. Thank you for understanding and the support. You are all awesome!
- Read the instructions and make sure all steps were followed correctly.
- Check that the issue is not specific to your development environment setup.
- Provide duplication steps.
- Attempt to look into the issue, and if you have a solution, make a pull request.
- Show that you have made an attempt to look into the issue.
- Check to see if the issue you are reporting is a duplicate of a previous reported issue.
- Following these instructions show me that you have tried.
- If you have a questions send me an email to jeremykenedy@gmail.com
- Please be considerate that this is an open source project that I provide to the community for FREE when opening an issue.
Open source projects are a the communityβs responsibility to use, contribute, and debug.
Laravel-material-design is licensed under the MIT license. Enjoy!