16 | 17 | {{ trans('titles.exceeded') }} 18 | 19 |
20 |23 | {!! trans('auth.tooManyEmails', ['email' => $email, 'hours' => $hours]) !!} 24 |
25 |├── public ├── favicon.ico ├── robots.txt ├── images │ ├── wink.png │ ├── default-user-bg.png │ ├── tick.svg │ ├── tick-mask.svg │ ├── buffer.svg │ └── wink.svg ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── weather-icons │ │ ├── WeatherIcons-Regular.otf │ │ ├── weathericons-regular-webfont.eot │ │ ├── weathericons-regular-webfont.ttf │ │ └── weathericons-regular-webfont.woff ├── .htaccess └── web.config ├── storage ├── logs │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── views │ └── .gitignore ├── database ├── .gitignore ├── seeds │ ├── DatabaseSeeder.php │ ├── ConnectRelationshipsSeeder.php │ └── RolesTableSeeder.php └── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_01_15_105324_create_roles_table.php │ ├── 2016_01_26_115212_create_permissions_table.php │ ├── 2017_03_09_082526_create_activations_table.php │ ├── 2017_03_09_082449_create_social_logins_table.php │ ├── 2016_01_15_114412_create_role_user_table.php │ ├── 2017_05_20_095210_create_tasks_table.php │ ├── 2017_03_20_213554_create_themes_table.php │ ├── 2016_01_26_115523_create_permission_role_table.php │ ├── 2016_02_09_132439_create_permission_user_table.php │ ├── 2017_03_21_042918_create_profiles_table.php │ └── 2014_10_12_000000_create_users_table.php ├── bootstrap ├── cache │ └── .gitignore ├── autoload.php └── app.php ├── resources ├── views │ ├── vendor │ │ ├── laravel-log-viewer │ │ │ └── .gitkeep │ │ ├── mail │ │ │ ├── markdown │ │ │ │ ├── panel.blade.php │ │ │ │ ├── table.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── button.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── promotion │ │ │ │ │ └── button.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ └── message.blade.php │ │ │ └── html │ │ │ │ ├── table.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ └── button.blade.php │ │ ├── pagination │ │ │ ├── simple-default.blade.php │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ ├── default.blade.php │ │ │ └── bootstrap-4.blade.php │ │ └── notifications │ │ │ └── email.blade.php │ ├── emails │ │ └── exception.blade.php │ ├── pages │ │ ├── admin │ │ │ └── home.blade.php │ │ └── status.blade.php │ ├── partials │ │ ├── mdl-snackbar.blade.php │ │ ├── status.blade.php │ │ ├── errors.blade.php │ │ ├── search-bar.blade.php │ │ ├── status-panel.blade.php │ │ ├── mdl-filter.blade.php │ │ ├── mdl-search.blade.php │ │ ├── mdl-highlighter.blade.php │ │ ├── form-status-ajax.blade.php │ │ └── header-nav.blade.php │ ├── scripts │ │ ├── toggleStatus.blade.php │ │ ├── tooltips.blade.php │ │ ├── highlighter-script.blade.php │ │ ├── gmaps-address-lookup-api3.blade.php │ │ ├── mdl-required-input-fix.blade.php │ │ ├── save-modal-script.blade.php │ │ ├── delete-modal-script.blade.php │ │ ├── check-changed.blade.php │ │ ├── html5-password-match-check.blade.php │ │ ├── form-modal-script.blade.php │ │ ├── datatables.blade.php │ │ ├── mdl-file-upload.blade.php │ │ ├── filter-data-script.blade.php │ │ ├── mdl-select.blade.php │ │ └── mdl-save-ajax.blade.php │ ├── tasks │ │ └── partials │ │ │ └── edit-task.blade.php │ ├── home.blade.php │ ├── cards │ │ ├── hero-image-card.blade.php │ │ └── weather-card.blade.php │ ├── modals │ │ ├── modal-delete.blade.php │ │ ├── modal-form.blade.php │ │ └── modal-save.blade.php │ ├── auth │ │ └── exceeded.blade.php │ ├── errors │ │ ├── 403.blade.php │ │ ├── 404.blade.php │ │ ├── 503.blade.php │ │ ├── 500.blade.php │ │ └── general.blade.php │ ├── dialogs │ │ ├── dialog-save.blade.php │ │ ├── dialog-delete.blade.php │ │ └── dialog-restore.blade.php │ └── profiles │ │ └── show.blade.php ├── assets │ ├── sass │ │ ├── partials │ │ │ ├── _base.scss │ │ │ ├── _typography.scss │ │ │ └── _mixins.scss │ │ ├── components │ │ │ ├── _badges.scss │ │ │ ├── _lists.scss │ │ │ ├── _mdl-tabs.scss │ │ │ ├── weather-icons │ │ │ │ ├── weather-icons-wind.min.scss │ │ │ │ ├── weather-icons-wind.scss │ │ │ │ ├── icon-variables │ │ │ │ │ ├── variables-direction.scss │ │ │ │ │ ├── variables-time.scss │ │ │ │ │ ├── variables-beaufort.scss │ │ │ │ │ ├── variables-misc.scss │ │ │ │ │ ├── variables-wind-names.scss │ │ │ │ │ ├── variables-day.scss │ │ │ │ │ ├── variables-neutral.scss │ │ │ │ │ └── variables-night.scss │ │ │ │ ├── icon-classes │ │ │ │ │ ├── classes-wind.scss │ │ │ │ │ ├── classes-direction.scss │ │ │ │ │ ├── classes-time.scss │ │ │ │ │ ├── classes-beaufort.scss │ │ │ │ │ ├── classes-misc.scss │ │ │ │ │ ├── classes-day.scss │ │ │ │ │ └── classes-moon-aliases.scss │ │ │ │ ├── weather-icons-variables.scss │ │ │ │ ├── weather-icons-classes.scss │ │ │ │ ├── weather-icons.min.scss │ │ │ │ ├── mappings │ │ │ │ │ ├── wi-forecast-io.scss │ │ │ │ │ └── wi-wunderground.scss │ │ │ │ └── weather-icons.scss │ │ │ ├── _spinners.scss │ │ │ ├── _dialogs.scss │ │ │ ├── _social-icons.scss │ │ │ ├── _select.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _mdl-selectfield.scss │ │ │ ├── _material-icons.scss │ │ │ ├── _chips.scss │ │ │ ├── _inputs.scss │ │ │ ├── _labels.scss │ │ │ ├── _mdl-toggle.scss │ │ │ ├── _alerts.scss │ │ │ ├── _weather-card.scss │ │ │ ├── _mdl-color-wheel.scss │ │ │ ├── _avatar.scss │ │ │ └── _cards.scss │ │ ├── original │ │ │ ├── _badges.scss │ │ │ ├── _lists.scss │ │ │ ├── _logs.scss │ │ │ ├── _typography.scss │ │ │ ├── _mixins.scss │ │ │ ├── _helpers.scss │ │ │ ├── _panels.scss │ │ │ ├── _modals.scss │ │ │ ├── _hideShowPassword.scss │ │ │ ├── _wells.scss │ │ │ ├── _margins.scss │ │ │ ├── app.scss │ │ │ ├── _socials.scss │ │ │ └── _variables.scss │ │ ├── layouts │ │ │ ├── _auth.scss │ │ │ └── _dashboard.scss │ │ └── app.scss │ └── js │ │ ├── laravel-mdl │ │ ├── spinners.js │ │ ├── alerts.js │ │ ├── mdl-snackbars.js │ │ ├── dialogs.js │ │ └── select.js │ │ ├── components │ │ └── Example.vue │ │ └── bootstrap.js └── lang │ └── en │ ├── permsandroles.php │ ├── socials.php │ ├── pagination.php │ ├── passwords.php │ ├── titles.php │ ├── modals.php │ ├── dialogs.php │ └── emails.php ├── .gitattributes ├── config ├── debugbar.php ├── hashing.php ├── view.php └── broadcasting.php ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── app ├── Http │ ├── Controllers │ │ ├── WelcomeController.php │ │ ├── Controller.php │ │ ├── UserController.php │ │ ├── AdminDetailsController.php │ │ └── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── LoginController.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── TrimStrings.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── CheckCurrentUser.php │ │ └── Authenticate.php │ └── ViewComposers │ │ └── ThemeComposer.php ├── Models │ ├── Social.php │ ├── Task.php │ ├── Activation.php │ └── Profile.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AuthServiceProvider.php │ ├── AppServiceProvider.php │ ├── MacroServiceProvider.php │ ├── EventServiceProvider.php │ ├── ComposerServiceProvider.php │ ├── LocalEnvironmentServiceProvider.php │ └── RouteServiceProvider.php ├── Traits │ ├── CaptchaTrait.php │ ├── ActivationTrait.php │ └── CaptureIpTrait.php ├── Console │ ├── Kernel.php │ └── Commands │ │ └── DeleteExpiredActivations.php ├── Logic │ ├── Macros │ │ └── HtmlMacros.php │ └── Activation │ │ └── ActivationRepository.php └── Notifications │ └── SendGoodbyeEmail.php ├── routes ├── channels.php ├── api.php └── console.php ├── .travis.yml ├── server.php ├── .gitignore ├── license.svg ├── LICENSE ├── phpunit.xml ├── webpack.mix.js ├── package.json └── artisan /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/views/vendor/laravel-log-viewer/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/emails/exception.blade.php: -------------------------------------------------------------------------------- 1 | {!! $content !!} -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/pages/admin/home.blade.php: -------------------------------------------------------------------------------- 1 | @extends('pages.user.home') -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/button.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/header.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion/button.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /resources/assets/sass/partials/_base.scss: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: Roboto; 3 | @include font-smoothing; 4 | } 5 | -------------------------------------------------------------------------------- /public/images/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykenedy/laravel-material-design/HEAD/public/images/wink.png -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- 1 |
| 4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | | 6 |
| 6 | {{ Illuminate\Mail\Markdown::parse($slot) }} 7 | | 8 |
4 |
|
12 |
4 |
|
12 |
{{ session()->get('message') }}
6 |{{ session()->get('message') }}
12 |
4 |
|
18 |
23 | {!! trans('auth.tooManyEmails', ['email' => $email, 'hours' => $hours]) !!} 24 |
25 |