├── .babelrc
├── .env.example
├── .gitattributes
├── .gitignore
├── app
├── Console
│ └── Kernel.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── RegisterController.php
│ │ │ └── ResetPasswordController.php
│ │ └── Controller.php
│ ├── Kernel.php
│ └── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrimStrings.php
│ │ ├── TrustProxies.php
│ │ └── VerifyCsrfToken.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
└── User.php
├── artisan
├── bootstrap
├── app.php
└── cache
│ └── .gitignore
├── composer.json
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── database.php
├── filesystems.php
├── hashing.php
├── logging.php
├── mail.php
├── queue.php
├── services.php
├── session.php
└── view.php
├── database
├── .gitignore
├── factories
│ └── UserFactory.php
├── migrations
│ ├── 2014_10_12_000000_create_users_table.php
│ └── 2014_10_12_100000_create_password_resets_table.php
└── seeds
│ └── DatabaseSeeder.php
├── package.json
├── phpunit.xml
├── public
├── .htaccess
├── css
│ └── app.css
├── favicon.ico
├── fonts
│ └── vendor
│ │ ├── font-awesome
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ │ └── simple-line-icons
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── Simple-Line-Icons.woff2
├── images
│ └── logo.png
├── index.php
├── js
│ ├── app.js
│ └── app_es6.js
├── mix-manifest.json
├── robots.txt
├── static
│ └── img
│ │ ├── avatars
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ └── 8.jpg
│ │ ├── favicon.png
│ │ ├── flags
│ │ ├── ASEAN.png
│ │ ├── Afghanistan.png
│ │ ├── African Union.png
│ │ ├── Albania.png
│ │ ├── Algeria.png
│ │ ├── American Samoa.png
│ │ ├── Andorra.png
│ │ ├── Angola.png
│ │ ├── Anguilla.png
│ │ ├── Antarctica.png
│ │ ├── Antigua & Barbuda.png
│ │ ├── Arab League.png
│ │ ├── Argentina.png
│ │ ├── Armenia.png
│ │ ├── Aruba.png
│ │ ├── Australia.png
│ │ ├── Austria.png
│ │ ├── Azerbaijan.png
│ │ ├── Bahamas.png
│ │ ├── Bahrain.png
│ │ ├── Bangladesh.png
│ │ ├── Barbados.png
│ │ ├── Belarus.png
│ │ ├── Belgium.png
│ │ ├── Belize.png
│ │ ├── Benin.png
│ │ ├── Bermuda.png
│ │ ├── Bhutan.png
│ │ ├── Bolivia.png
│ │ ├── Bosnia & Herzegovina.png
│ │ ├── Botswana.png
│ │ ├── Brazil.png
│ │ ├── Brunei.png
│ │ ├── Bulgaria.png
│ │ ├── Burkina Faso.png
│ │ ├── Burundi.png
│ │ ├── CARICOM.png
│ │ ├── CIS.png
│ │ ├── Cambodja.png
│ │ ├── Cameroon.png
│ │ ├── Canada.png
│ │ ├── Cape Verde.png
│ │ ├── Cayman Islands.png
│ │ ├── Central African Republic.png
│ │ ├── Chad.png
│ │ ├── Chile.png
│ │ ├── China.png
│ │ ├── Colombia.png
│ │ ├── Commonwealth.png
│ │ ├── Comoros.png
│ │ ├── Congo-Brazzaville.png
│ │ ├── Congo-Kinshasa(Zaire).png
│ │ ├── Cook Islands.png
│ │ ├── Costa Rica.png
│ │ ├── Cote d'Ivoire.png
│ │ ├── Croatia.png
│ │ ├── Cuba.png
│ │ ├── Cyprus.png
│ │ ├── Czech Republic.png
│ │ ├── Denmark.png
│ │ ├── Djibouti.png
│ │ ├── Dominica.png
│ │ ├── Dominican Republic.png
│ │ ├── Ecuador.png
│ │ ├── Egypt.png
│ │ ├── El Salvador.png
│ │ ├── England.png
│ │ ├── Equatorial Guinea.png
│ │ ├── Eritrea.png
│ │ ├── Estonia.png
│ │ ├── Ethiopia.png
│ │ ├── European Union.png
│ │ ├── Faroes.png
│ │ ├── Fiji.png
│ │ ├── Finland.png
│ │ ├── France.png
│ │ ├── Gabon.png
│ │ ├── Gambia.png
│ │ ├── Georgia.png
│ │ ├── Germany.png
│ │ ├── Ghana.png
│ │ ├── Gibraltar.png
│ │ ├── Greece.png
│ │ ├── Greenland.png
│ │ ├── Grenada.png
│ │ ├── Guadeloupe.png
│ │ ├── Guam.png
│ │ ├── Guatemala.png
│ │ ├── Guernsey.png
│ │ ├── Guinea-Bissau.png
│ │ ├── Guinea.png
│ │ ├── Guyana.png
│ │ ├── Haiti.png
│ │ ├── Honduras.png
│ │ ├── Hong Kong.png
│ │ ├── Hungary.png
│ │ ├── Iceland.png
│ │ ├── India.png
│ │ ├── Indonezia.png
│ │ ├── Iran.png
│ │ ├── Iraq.png
│ │ ├── Ireland.png
│ │ ├── Islamic Conference.png
│ │ ├── Isle of Man.png
│ │ ├── Israel.png
│ │ ├── Italy.png
│ │ ├── Jamaica.png
│ │ ├── Japan.png
│ │ ├── Jersey.png
│ │ ├── Jordan.png
│ │ ├── Kazakhstan.png
│ │ ├── Kenya.png
│ │ ├── Kiribati.png
│ │ ├── Kosovo.png
│ │ ├── Kuwait.png
│ │ ├── Kyrgyzstan.png
│ │ ├── Laos.png
│ │ ├── Latvia.png
│ │ ├── Lebanon.png
│ │ ├── Lesotho.png
│ │ ├── Liberia.png
│ │ ├── Libya.png
│ │ ├── Liechtenshein.png
│ │ ├── Lithuania.png
│ │ ├── Luxembourg.png
│ │ ├── Macao.png
│ │ ├── Macedonia.png
│ │ ├── Madagascar.png
│ │ ├── Malawi.png
│ │ ├── Malaysia.png
│ │ ├── Maldives.png
│ │ ├── Mali.png
│ │ ├── Malta.png
│ │ ├── Marshall Islands.png
│ │ ├── Martinique.png
│ │ ├── Mauritania.png
│ │ ├── Mauritius.png
│ │ ├── Mexico.png
│ │ ├── Micronesia.png
│ │ ├── Moldova.png
│ │ ├── Monaco.png
│ │ ├── Mongolia.png
│ │ ├── Montenegro.png
│ │ ├── Montserrat.png
│ │ ├── Morocco.png
│ │ ├── Mozambique.png
│ │ ├── Myanmar(Burma).png
│ │ ├── NATO.png
│ │ ├── Namibia.png
│ │ ├── Nauru.png
│ │ ├── Nepal.png
│ │ ├── Netherlands Antilles.png
│ │ ├── Netherlands.png
│ │ ├── New Caledonia.png
│ │ ├── New Zealand.png
│ │ ├── Nicaragua.png
│ │ ├── Niger.png
│ │ ├── Nigeria.png
│ │ ├── North Korea.png
│ │ ├── Northern Cyprus.png
│ │ ├── Northern Ireland.png
│ │ ├── Norway.png
│ │ ├── OPEC.png
│ │ ├── Olimpic Movement.png
│ │ ├── Oman.png
│ │ ├── Pakistan.png
│ │ ├── Palau.png
│ │ ├── Palestine.png
│ │ ├── Panama.png
│ │ ├── Papua New Guinea.png
│ │ ├── Paraguay.png
│ │ ├── Peru.png
│ │ ├── Philippines.png
│ │ ├── Poland.png
│ │ ├── Portugal.png
│ │ ├── Puerto Rico.png
│ │ ├── Qatar.png
│ │ ├── Red Cross.png
│ │ ├── Reunion.png
│ │ ├── Romania.png
│ │ ├── Russia.png
│ │ ├── Rwanda.png
│ │ ├── Saint Lucia.png
│ │ ├── Samoa.png
│ │ ├── San Marino.png
│ │ ├── Sao Tome & Principe.png
│ │ ├── Saudi Arabia.png
│ │ ├── Scotland.png
│ │ ├── Senegal.png
│ │ ├── Serbia(Yugoslavia).png
│ │ ├── Seychelles.png
│ │ ├── Sierra Leone.png
│ │ ├── Singapore.png
│ │ ├── Slovakia.png
│ │ ├── Slovenia.png
│ │ ├── Solomon Islands.png
│ │ ├── Somalia.png
│ │ ├── Somaliland.png
│ │ ├── South Africa.png
│ │ ├── South Korea.png
│ │ ├── Spain.png
│ │ ├── Sri Lanka.png
│ │ ├── St Kitts & Nevis.png
│ │ ├── St Vincent & the Grenadines.png
│ │ ├── Sudan.png
│ │ ├── Suriname.png
│ │ ├── Swaziland.png
│ │ ├── Sweden.png
│ │ ├── Switzerland.png
│ │ ├── Syria.png
│ │ ├── Tahiti(French Polinesia).png
│ │ ├── Taiwan.png
│ │ ├── Tajikistan.png
│ │ ├── Tanzania.png
│ │ ├── Thailand.png
│ │ ├── Timor-Leste.png
│ │ ├── Togo.png
│ │ ├── Tonga.png
│ │ ├── Trinidad & Tobago.png
│ │ ├── Tunisia.png
│ │ ├── Turkey.png
│ │ ├── Turkmenistan.png
│ │ ├── Turks and Caicos Islands.png
│ │ ├── Tuvalu.png
│ │ ├── USA.png
│ │ ├── Uganda.png
│ │ ├── Ukraine.png
│ │ ├── United Arab Emirates.png
│ │ ├── United Nations.png
│ │ ├── United-Kingdom.png
│ │ ├── Uruguay.png
│ │ ├── Uzbekistan.png
│ │ ├── Vanutau.png
│ │ ├── Vatican City.png
│ │ ├── Venezuela.png
│ │ ├── Viet Nam.png
│ │ ├── Virgin Islands British.png
│ │ ├── Virgin Islands US.png
│ │ ├── Wales.png
│ │ ├── Western Sahara.png
│ │ ├── Yemen.png
│ │ ├── Zambia.png
│ │ └── Zimbabwe.png
│ │ └── logo.png
└── web.config
├── readme.md
├── resources
├── assets
│ ├── img
│ │ └── logo.png
│ ├── js
│ │ ├── App.vue
│ │ ├── _nav.js
│ │ ├── app.js
│ │ ├── bootstrap.js
│ │ ├── components
│ │ │ ├── Aside.vue
│ │ │ ├── Breadcrumb.vue
│ │ │ ├── Callout.vue
│ │ │ ├── Footer.vue
│ │ │ ├── Header.vue
│ │ │ ├── Sidebar.vue
│ │ │ ├── SidebarNavDropdown.vue
│ │ │ ├── SidebarNavLink.vue
│ │ │ ├── SidebarNavTitle.vue
│ │ │ ├── Switch.vue
│ │ │ └── index.js
│ │ ├── containers
│ │ │ └── Full.vue
│ │ ├── router
│ │ │ └── index.js
│ │ └── views
│ │ │ ├── Charts.vue
│ │ │ ├── Dashboard.vue
│ │ │ ├── Widgets.vue
│ │ │ ├── charts
│ │ │ ├── BarExample.vue
│ │ │ ├── DoughnutExample.vue
│ │ │ ├── LineExample.vue
│ │ │ ├── PieExample.vue
│ │ │ ├── PolarAreaExample.vue
│ │ │ └── RadarExample.vue
│ │ │ ├── components
│ │ │ ├── Buttons.vue
│ │ │ ├── Cards.vue
│ │ │ ├── Forms.vue
│ │ │ ├── Modals.vue
│ │ │ ├── SocialButtons.vue
│ │ │ ├── Switches.vue
│ │ │ └── Tables.vue
│ │ │ ├── dashboard
│ │ │ ├── CardBarChartExample.vue
│ │ │ ├── CardLine1ChartExample.vue
│ │ │ ├── CardLine2ChartExample.vue
│ │ │ ├── CardLine3ChartExample.vue
│ │ │ ├── MainChartExample.vue
│ │ │ └── SocialBoxChartExample.vue
│ │ │ ├── icons
│ │ │ ├── FontAwesome.vue
│ │ │ └── SimpleLineIcons.vue
│ │ │ └── pages
│ │ │ ├── Login.vue
│ │ │ ├── Page404.vue
│ │ │ ├── Page500.vue
│ │ │ └── Register.vue
│ └── scss
│ │ ├── _bootstrap-variables.scss
│ │ ├── _core-variables.scss
│ │ ├── _custom.scss
│ │ ├── bootstrap
│ │ ├── _alert.scss
│ │ ├── _badge.scss
│ │ ├── _breadcrumb.scss
│ │ ├── _button-group.scss
│ │ ├── _buttons.scss
│ │ ├── _card.scss
│ │ ├── _carousel.scss
│ │ ├── _close.scss
│ │ ├── _code.scss
│ │ ├── _custom-forms.scss
│ │ ├── _dropdown.scss
│ │ ├── _forms.scss
│ │ ├── _functions.scss
│ │ ├── _grid.scss
│ │ ├── _images.scss
│ │ ├── _input-group.scss
│ │ ├── _jumbotron.scss
│ │ ├── _list-group.scss
│ │ ├── _media.scss
│ │ ├── _mixins.scss
│ │ ├── _modal.scss
│ │ ├── _nav.scss
│ │ ├── _navbar.scss
│ │ ├── _pagination.scss
│ │ ├── _popover.scss
│ │ ├── _print.scss
│ │ ├── _progress.scss
│ │ ├── _reboot.scss
│ │ ├── _tables.scss
│ │ ├── _tooltip.scss
│ │ ├── _transitions.scss
│ │ ├── _type.scss
│ │ ├── _utilities.scss
│ │ ├── _variables.scss
│ │ ├── bootstrap-grid.scss
│ │ ├── bootstrap-reboot.scss
│ │ ├── bootstrap.scss
│ │ ├── mixins
│ │ │ ├── _alert.scss
│ │ │ ├── _background-variant.scss
│ │ │ ├── _badge.scss
│ │ │ ├── _border-radius.scss
│ │ │ ├── _box-shadow.scss
│ │ │ ├── _breakpoints.scss
│ │ │ ├── _buttons.scss
│ │ │ ├── _clearfix.scss
│ │ │ ├── _float.scss
│ │ │ ├── _forms.scss
│ │ │ ├── _gradients.scss
│ │ │ ├── _grid-framework.scss
│ │ │ ├── _grid.scss
│ │ │ ├── _hover.scss
│ │ │ ├── _image.scss
│ │ │ ├── _list-group.scss
│ │ │ ├── _lists.scss
│ │ │ ├── _nav-divider.scss
│ │ │ ├── _navbar-align.scss
│ │ │ ├── _pagination.scss
│ │ │ ├── _reset-text.scss
│ │ │ ├── _resize.scss
│ │ │ ├── _screen-reader.scss
│ │ │ ├── _size.scss
│ │ │ ├── _table-row.scss
│ │ │ ├── _text-emphasis.scss
│ │ │ ├── _text-hide.scss
│ │ │ ├── _text-truncate.scss
│ │ │ ├── _transition.scss
│ │ │ └── _visibility.scss
│ │ └── utilities
│ │ │ ├── _align.scss
│ │ │ ├── _background.scss
│ │ │ ├── _borders.scss
│ │ │ ├── _clearfix.scss
│ │ │ ├── _display.scss
│ │ │ ├── _embed.scss
│ │ │ ├── _flex.scss
│ │ │ ├── _float.scss
│ │ │ ├── _position.scss
│ │ │ ├── _screenreaders.scss
│ │ │ ├── _sizing.scss
│ │ │ ├── _spacing.scss
│ │ │ ├── _text.scss
│ │ │ └── _visibility.scss
│ │ ├── core
│ │ ├── _animate.scss
│ │ ├── _aside.scss
│ │ ├── _avatars.scss
│ │ ├── _badge.scss
│ │ ├── _breadcrumb-menu.scss
│ │ ├── _breadcrumb.scss
│ │ ├── _buttons.scss
│ │ ├── _callout.scss
│ │ ├── _card.scss
│ │ ├── _charts.scss
│ │ ├── _dropdown.scss
│ │ ├── _footer.scss
│ │ ├── _grid.scss
│ │ ├── _input-group.scss
│ │ ├── _layout.scss
│ │ ├── _loading.scss
│ │ ├── _mixins.scss
│ │ ├── _mobile.scss
│ │ ├── _modal.scss
│ │ ├── _nav.scss
│ │ ├── _navbar.scss
│ │ ├── _others.scss
│ │ ├── _progress.scss
│ │ ├── _rtl.scss
│ │ ├── _sidebar.scss
│ │ ├── _switches.scss
│ │ ├── _tables.scss
│ │ ├── _temp.scss
│ │ ├── _typography.scss
│ │ ├── _utilities.scss
│ │ ├── _variables.scss
│ │ ├── _widgets.scss
│ │ ├── core.scss
│ │ └── utilities
│ │ │ ├── _background.scss
│ │ │ ├── _borders.scss
│ │ │ └── _display.scss
│ │ ├── style.scss
│ │ └── vendors
│ │ ├── _vendors.scss
│ │ └── chart.js
│ │ └── chart.scss
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
└── views
│ └── welcome.blade.php
├── routes
├── api.php
├── channels.php
├── console.php
└── web.php
├── server.php
├── storage
├── app
│ ├── .gitignore
│ └── public
│ │ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ ├── testing
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
├── tests
├── CreatesApplication.php
├── Feature
│ └── ExampleTest.php
├── TestCase.php
└── Unit
│ └── ExampleTest.php
├── webpack.mix.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "plugins": [
3 | [
4 | "babel-plugin-root-import",
5 | {
6 | "rootPathPrefix": "@",
7 | "rootPathSuffix": "./resources/assets/js"
8 | }
9 | ]
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/.env.example:
--------------------------------------------------------------------------------
1 | APP_NAME=Laravel
2 | APP_ENV=local
3 | APP_KEY=
4 | APP_DEBUG=true
5 | APP_URL=http://localhost
6 |
7 | LOG_CHANNEL=stack
8 |
9 | DB_CONNECTION=mysql
10 | DB_HOST=127.0.0.1
11 | DB_PORT=3306
12 | DB_DATABASE=homestead
13 | DB_USERNAME=homestead
14 | DB_PASSWORD=secret
15 |
16 | BROADCAST_DRIVER=log
17 | CACHE_DRIVER=file
18 | SESSION_DRIVER=file
19 | SESSION_LIFETIME=120
20 | QUEUE_DRIVER=sync
21 |
22 | REDIS_HOST=127.0.0.1
23 | REDIS_PASSWORD=null
24 | REDIS_PORT=6379
25 |
26 | MAIL_DRIVER=smtp
27 | MAIL_HOST=smtp.mailtrap.io
28 | MAIL_PORT=2525
29 | MAIL_USERNAME=null
30 | MAIL_PASSWORD=null
31 | MAIL_ENCRYPTION=null
32 |
33 | PUSHER_APP_ID=
34 | PUSHER_APP_KEY=
35 | PUSHER_APP_SECRET=
36 | PUSHER_APP_CLUSTER=mt1
37 |
38 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
39 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
40 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /public/hot
3 | /public/storage
4 | /storage/*.key
5 | /vendor
6 | /.idea
7 | /.vscode
8 | /.vagrant
9 | Homestead.json
10 | Homestead.yaml
11 | npm-debug.log
12 | yarn-error.log
13 | .env
14 | composer.lock
15 |
--------------------------------------------------------------------------------
/app/Console/Kernel.php:
--------------------------------------------------------------------------------
1 | command('inspire')
28 | // ->hourly();
29 | }
30 |
31 | /**
32 | * Register the commands for the application.
33 | *
34 | * @return void
35 | */
36 | protected function commands()
37 | {
38 | $this->load(__DIR__.'/Commands');
39 |
40 | require base_path('routes/console.php');
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/app/Exceptions/Handler.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/LoginController.php:
--------------------------------------------------------------------------------
1 | middleware('guest')->except('logout');
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/ResetPasswordController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | check()) {
21 | return redirect('/home');
22 | }
23 |
24 | return $next($request);
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/Http/Middleware/TrimStrings.php:
--------------------------------------------------------------------------------
1 | 'App\Policies\ModelPolicy',
17 | ];
18 |
19 | /**
20 | * Register any authentication / authorization services.
21 | *
22 | * @return void
23 | */
24 | public function boot()
25 | {
26 | $this->registerPolicies();
27 |
28 | //
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
17 | 'App\Listeners\EventListener',
18 | ],
19 | ];
20 |
21 | /**
22 | * Register any events for your application.
23 | *
24 | * @return void
25 | */
26 | public function boot()
27 | {
28 | parent::boot();
29 |
30 | //
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Providers/RouteServiceProvider.php:
--------------------------------------------------------------------------------
1 | mapApiRoutes();
39 |
40 | $this->mapWebRoutes();
41 |
42 | //
43 | }
44 |
45 | /**
46 | * Define the "web" routes for the application.
47 | *
48 | * These routes all receive session state, CSRF protection, etc.
49 | *
50 | * @return void
51 | */
52 | protected function mapWebRoutes()
53 | {
54 | Route::middleware('web')
55 | ->namespace($this->namespace)
56 | ->group(base_path('routes/web.php'));
57 | }
58 |
59 | /**
60 | * Define the "api" routes for the application.
61 | *
62 | * These routes are typically stateless.
63 | *
64 | * @return void
65 | */
66 | protected function mapApiRoutes()
67 | {
68 | Route::prefix('api')
69 | ->middleware('api')
70 | ->namespace($this->namespace)
71 | ->group(base_path('routes/api.php'));
72 | }
73 | }
74 |
--------------------------------------------------------------------------------
/app/User.php:
--------------------------------------------------------------------------------
1 | singleton(
30 | Illuminate\Contracts\Http\Kernel::class,
31 | App\Http\Kernel::class
32 | );
33 |
34 | $app->singleton(
35 | Illuminate\Contracts\Console\Kernel::class,
36 | App\Console\Kernel::class
37 | );
38 |
39 | $app->singleton(
40 | Illuminate\Contracts\Debug\ExceptionHandler::class,
41 | App\Exceptions\Handler::class
42 | );
43 |
44 | /*
45 | |--------------------------------------------------------------------------
46 | | Return The Application
47 | |--------------------------------------------------------------------------
48 | |
49 | | This script returns the application instance. The instance is given to
50 | | the calling script so we can separate the building of the instances
51 | | from the actual running of the application and sending responses.
52 | |
53 | */
54 |
55 | return $app;
56 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/config/broadcasting.php:
--------------------------------------------------------------------------------
1 | env('BROADCAST_DRIVER', 'null'),
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Broadcast Connections
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may define all of the broadcast connections that will be used
26 | | to broadcast events to other systems or over websockets. Samples of
27 | | each available type of connection are provided inside this array.
28 | |
29 | */
30 |
31 | 'connections' => [
32 |
33 | 'pusher' => [
34 | 'driver' => 'pusher',
35 | 'key' => env('PUSHER_APP_KEY'),
36 | 'secret' => env('PUSHER_APP_SECRET'),
37 | 'app_id' => env('PUSHER_APP_ID'),
38 | 'options' => [
39 | 'cluster' => env('PUSHER_APP_CLUSTER'),
40 | 'encrypted' => true,
41 | ],
42 | ],
43 |
44 | 'redis' => [
45 | 'driver' => 'redis',
46 | 'connection' => 'default',
47 | ],
48 |
49 | 'log' => [
50 | 'driver' => 'log',
51 | ],
52 |
53 | 'null' => [
54 | 'driver' => 'null',
55 | ],
56 |
57 | ],
58 |
59 | ];
60 |
--------------------------------------------------------------------------------
/config/hashing.php:
--------------------------------------------------------------------------------
1 | 'bcrypt',
19 |
20 | ];
21 |
--------------------------------------------------------------------------------
/config/services.php:
--------------------------------------------------------------------------------
1 | [
18 | 'domain' => env('MAILGUN_DOMAIN'),
19 | 'secret' => env('MAILGUN_SECRET'),
20 | ],
21 |
22 | 'ses' => [
23 | 'key' => env('SES_KEY'),
24 | 'secret' => env('SES_SECRET'),
25 | 'region' => 'us-east-1',
26 | ],
27 |
28 | 'sparkpost' => [
29 | 'secret' => env('SPARKPOST_SECRET'),
30 | ],
31 |
32 | 'stripe' => [
33 | 'model' => App\User::class,
34 | 'key' => env('STRIPE_KEY'),
35 | 'secret' => env('STRIPE_SECRET'),
36 | ],
37 |
38 | ];
39 |
--------------------------------------------------------------------------------
/config/view.php:
--------------------------------------------------------------------------------
1 | [
17 | resource_path('views'),
18 | ],
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Compiled View Path
23 | |--------------------------------------------------------------------------
24 | |
25 | | This option determines where all the compiled Blade templates will be
26 | | stored for your application. Typically, this is within the storage
27 | | directory. However, as usual, you are free to change this value.
28 | |
29 | */
30 |
31 | 'compiled' => realpath(storage_path('framework/views')),
32 |
33 | ];
34 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/database/factories/UserFactory.php:
--------------------------------------------------------------------------------
1 | define(App\User::class, function (Faker $faker) {
17 | return [
18 | 'name' => $faker->name,
19 | 'email' => $faker->unique()->safeEmail,
20 | 'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
21 | 'remember_token' => str_random(10),
22 | ];
23 | });
24 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_000000_create_users_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('name');
19 | $table->string('email')->unique();
20 | $table->string('password');
21 | $table->rememberToken();
22 | $table->timestamps();
23 | });
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::dropIfExists('users');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_100000_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
18 | $table->string('token');
19 | $table->timestamp('created_at')->nullable();
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::dropIfExists('password_resets');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
1 | call(UsersTableSeeder::class);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "scripts": {
4 | "dev": "npm run development",
5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
6 | "watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
7 | "watch-poll": "npm run watch -- --watch-poll",
8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
9 | "prod": "npm run production",
10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
11 | },
12 | "devDependencies": {
13 | "axios": "^0.18",
14 | "babel-plugin-root-import": "^5.1.0",
15 | "bootstrap": "^4.0.0",
16 | "cross-env": "^5.1",
17 | "jquery": "^3.2",
18 | "laravel-mix": "^2.0",
19 | "lodash": "^4.17.4",
20 | "popper.js": "^1.12",
21 | "uglify-es": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
22 | "vue": "^2.5.7"
23 | },
24 | "dependencies": {
25 | "bootstrap-vue": "0.20.1",
26 | "chart.js": "2.6.0",
27 | "font-awesome": "^4.7.0",
28 | "simple-line-icons": "^2.4.1",
29 | "vue-chartjs": "2.8.1",
30 | "vue-router": "^2.7.0",
31 | "vue-strap": "github:wffranco/vue-strap"
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
13 | ./tests/Feature
14 |
15 |
16 |
17 | ./tests/Unit
18 |
19 |
20 |
21 |
22 | ./app
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/public/.htaccess:
--------------------------------------------------------------------------------
1 |
2 |
3 | Options -MultiViews -Indexes
4 |
5 |
6 | RewriteEngine On
7 |
8 | # Handle Authorization Header
9 | RewriteCond %{HTTP:Authorization} .
10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
11 |
12 | # Redirect Trailing Slashes If Not A Folder...
13 | RewriteCond %{REQUEST_FILENAME} !-d
14 | RewriteCond %{REQUEST_URI} (.+)/$
15 | RewriteRule ^ %1 [L,R=301]
16 |
17 | # Handle Front Controller...
18 | RewriteCond %{REQUEST_FILENAME} !-d
19 | RewriteCond %{REQUEST_FILENAME} !-f
20 | RewriteRule ^ index.php [L]
21 |
22 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/favicon.ico
--------------------------------------------------------------------------------
/public/fonts/vendor/font-awesome/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/fonts/vendor/font-awesome/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/fonts/vendor/font-awesome/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/fonts/vendor/font-awesome/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/fonts/vendor/font-awesome/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/fonts/vendor/font-awesome/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/public/fonts/vendor/simple-line-icons/Simple-Line-Icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/fonts/vendor/simple-line-icons/Simple-Line-Icons.eot
--------------------------------------------------------------------------------
/public/fonts/vendor/simple-line-icons/Simple-Line-Icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/fonts/vendor/simple-line-icons/Simple-Line-Icons.ttf
--------------------------------------------------------------------------------
/public/fonts/vendor/simple-line-icons/Simple-Line-Icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/fonts/vendor/simple-line-icons/Simple-Line-Icons.woff
--------------------------------------------------------------------------------
/public/fonts/vendor/simple-line-icons/Simple-Line-Icons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/fonts/vendor/simple-line-icons/Simple-Line-Icons.woff2
--------------------------------------------------------------------------------
/public/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/images/logo.png
--------------------------------------------------------------------------------
/public/js/app_es6.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * First we will load all of this project's JavaScript dependencies which
4 | * includes Vue and other libraries. It is a great starting point when
5 | * building robust, powerful web applications using Vue and Laravel.
6 | */
7 |
8 | require('./bootstrap');
9 |
10 | window.Vue = require('vue');
11 |
12 | /**
13 | * Next, we will create a fresh Vue application instance and attach it to
14 | * the page. Then, you may begin adding components to this application
15 | * or customize the JavaScript scaffolding to fit your unique needs.
16 | */
17 |
18 | // The Vue build version to load with the `import` command
19 | // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
20 | import Vue from 'vue';
21 | import BootstrapVue from 'bootstrap-vue';
22 | import App from './App';
23 | import router from './router';
24 |
25 | Vue.use(BootstrapVue);
26 |
27 | /* eslint-disable no-new */
28 | new Vue({
29 | el: '#app',
30 | router: router,
31 | template: '',
32 | components: {
33 | App: App
34 | }
35 | });
--------------------------------------------------------------------------------
/public/mix-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "/js/app.js": "/js/app.js"
3 | }
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/public/static/img/avatars/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/avatars/1.jpg
--------------------------------------------------------------------------------
/public/static/img/avatars/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/avatars/2.jpg
--------------------------------------------------------------------------------
/public/static/img/avatars/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/avatars/3.jpg
--------------------------------------------------------------------------------
/public/static/img/avatars/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/avatars/4.jpg
--------------------------------------------------------------------------------
/public/static/img/avatars/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/avatars/5.jpg
--------------------------------------------------------------------------------
/public/static/img/avatars/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/avatars/6.jpg
--------------------------------------------------------------------------------
/public/static/img/avatars/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/avatars/7.jpg
--------------------------------------------------------------------------------
/public/static/img/avatars/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/avatars/8.jpg
--------------------------------------------------------------------------------
/public/static/img/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/favicon.png
--------------------------------------------------------------------------------
/public/static/img/flags/ASEAN.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/ASEAN.png
--------------------------------------------------------------------------------
/public/static/img/flags/Afghanistan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Afghanistan.png
--------------------------------------------------------------------------------
/public/static/img/flags/African Union.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/African Union.png
--------------------------------------------------------------------------------
/public/static/img/flags/Albania.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Albania.png
--------------------------------------------------------------------------------
/public/static/img/flags/Algeria.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Algeria.png
--------------------------------------------------------------------------------
/public/static/img/flags/American Samoa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/American Samoa.png
--------------------------------------------------------------------------------
/public/static/img/flags/Andorra.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Andorra.png
--------------------------------------------------------------------------------
/public/static/img/flags/Angola.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Angola.png
--------------------------------------------------------------------------------
/public/static/img/flags/Anguilla.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Anguilla.png
--------------------------------------------------------------------------------
/public/static/img/flags/Antarctica.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Antarctica.png
--------------------------------------------------------------------------------
/public/static/img/flags/Antigua & Barbuda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Antigua & Barbuda.png
--------------------------------------------------------------------------------
/public/static/img/flags/Arab League.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Arab League.png
--------------------------------------------------------------------------------
/public/static/img/flags/Argentina.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Argentina.png
--------------------------------------------------------------------------------
/public/static/img/flags/Armenia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Armenia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Aruba.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Aruba.png
--------------------------------------------------------------------------------
/public/static/img/flags/Australia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Australia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Austria.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Austria.png
--------------------------------------------------------------------------------
/public/static/img/flags/Azerbaijan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Azerbaijan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Bahamas.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Bahamas.png
--------------------------------------------------------------------------------
/public/static/img/flags/Bahrain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Bahrain.png
--------------------------------------------------------------------------------
/public/static/img/flags/Bangladesh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Bangladesh.png
--------------------------------------------------------------------------------
/public/static/img/flags/Barbados.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Barbados.png
--------------------------------------------------------------------------------
/public/static/img/flags/Belarus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Belarus.png
--------------------------------------------------------------------------------
/public/static/img/flags/Belgium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Belgium.png
--------------------------------------------------------------------------------
/public/static/img/flags/Belize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Belize.png
--------------------------------------------------------------------------------
/public/static/img/flags/Benin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Benin.png
--------------------------------------------------------------------------------
/public/static/img/flags/Bermuda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Bermuda.png
--------------------------------------------------------------------------------
/public/static/img/flags/Bhutan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Bhutan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Bolivia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Bolivia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Bosnia & Herzegovina.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Bosnia & Herzegovina.png
--------------------------------------------------------------------------------
/public/static/img/flags/Botswana.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Botswana.png
--------------------------------------------------------------------------------
/public/static/img/flags/Brazil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Brazil.png
--------------------------------------------------------------------------------
/public/static/img/flags/Brunei.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Brunei.png
--------------------------------------------------------------------------------
/public/static/img/flags/Bulgaria.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Bulgaria.png
--------------------------------------------------------------------------------
/public/static/img/flags/Burkina Faso.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Burkina Faso.png
--------------------------------------------------------------------------------
/public/static/img/flags/Burundi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Burundi.png
--------------------------------------------------------------------------------
/public/static/img/flags/CARICOM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/CARICOM.png
--------------------------------------------------------------------------------
/public/static/img/flags/CIS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/CIS.png
--------------------------------------------------------------------------------
/public/static/img/flags/Cambodja.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Cambodja.png
--------------------------------------------------------------------------------
/public/static/img/flags/Cameroon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Cameroon.png
--------------------------------------------------------------------------------
/public/static/img/flags/Canada.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Canada.png
--------------------------------------------------------------------------------
/public/static/img/flags/Cape Verde.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Cape Verde.png
--------------------------------------------------------------------------------
/public/static/img/flags/Cayman Islands.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Cayman Islands.png
--------------------------------------------------------------------------------
/public/static/img/flags/Central African Republic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Central African Republic.png
--------------------------------------------------------------------------------
/public/static/img/flags/Chad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Chad.png
--------------------------------------------------------------------------------
/public/static/img/flags/Chile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Chile.png
--------------------------------------------------------------------------------
/public/static/img/flags/China.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/China.png
--------------------------------------------------------------------------------
/public/static/img/flags/Colombia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Colombia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Commonwealth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Commonwealth.png
--------------------------------------------------------------------------------
/public/static/img/flags/Comoros.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Comoros.png
--------------------------------------------------------------------------------
/public/static/img/flags/Congo-Brazzaville.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Congo-Brazzaville.png
--------------------------------------------------------------------------------
/public/static/img/flags/Congo-Kinshasa(Zaire).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Congo-Kinshasa(Zaire).png
--------------------------------------------------------------------------------
/public/static/img/flags/Cook Islands.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Cook Islands.png
--------------------------------------------------------------------------------
/public/static/img/flags/Costa Rica.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Costa Rica.png
--------------------------------------------------------------------------------
/public/static/img/flags/Cote d'Ivoire.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Cote d'Ivoire.png
--------------------------------------------------------------------------------
/public/static/img/flags/Croatia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Croatia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Cuba.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Cuba.png
--------------------------------------------------------------------------------
/public/static/img/flags/Cyprus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Cyprus.png
--------------------------------------------------------------------------------
/public/static/img/flags/Czech Republic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Czech Republic.png
--------------------------------------------------------------------------------
/public/static/img/flags/Denmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Denmark.png
--------------------------------------------------------------------------------
/public/static/img/flags/Djibouti.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Djibouti.png
--------------------------------------------------------------------------------
/public/static/img/flags/Dominica.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Dominica.png
--------------------------------------------------------------------------------
/public/static/img/flags/Dominican Republic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Dominican Republic.png
--------------------------------------------------------------------------------
/public/static/img/flags/Ecuador.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Ecuador.png
--------------------------------------------------------------------------------
/public/static/img/flags/Egypt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Egypt.png
--------------------------------------------------------------------------------
/public/static/img/flags/El Salvador.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/El Salvador.png
--------------------------------------------------------------------------------
/public/static/img/flags/England.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/England.png
--------------------------------------------------------------------------------
/public/static/img/flags/Equatorial Guinea.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Equatorial Guinea.png
--------------------------------------------------------------------------------
/public/static/img/flags/Eritrea.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Eritrea.png
--------------------------------------------------------------------------------
/public/static/img/flags/Estonia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Estonia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Ethiopia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Ethiopia.png
--------------------------------------------------------------------------------
/public/static/img/flags/European Union.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/European Union.png
--------------------------------------------------------------------------------
/public/static/img/flags/Faroes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Faroes.png
--------------------------------------------------------------------------------
/public/static/img/flags/Fiji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Fiji.png
--------------------------------------------------------------------------------
/public/static/img/flags/Finland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Finland.png
--------------------------------------------------------------------------------
/public/static/img/flags/France.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/France.png
--------------------------------------------------------------------------------
/public/static/img/flags/Gabon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Gabon.png
--------------------------------------------------------------------------------
/public/static/img/flags/Gambia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Gambia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Georgia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Georgia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Germany.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Germany.png
--------------------------------------------------------------------------------
/public/static/img/flags/Ghana.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Ghana.png
--------------------------------------------------------------------------------
/public/static/img/flags/Gibraltar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Gibraltar.png
--------------------------------------------------------------------------------
/public/static/img/flags/Greece.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Greece.png
--------------------------------------------------------------------------------
/public/static/img/flags/Greenland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Greenland.png
--------------------------------------------------------------------------------
/public/static/img/flags/Grenada.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Grenada.png
--------------------------------------------------------------------------------
/public/static/img/flags/Guadeloupe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Guadeloupe.png
--------------------------------------------------------------------------------
/public/static/img/flags/Guam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Guam.png
--------------------------------------------------------------------------------
/public/static/img/flags/Guatemala.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Guatemala.png
--------------------------------------------------------------------------------
/public/static/img/flags/Guernsey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Guernsey.png
--------------------------------------------------------------------------------
/public/static/img/flags/Guinea-Bissau.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Guinea-Bissau.png
--------------------------------------------------------------------------------
/public/static/img/flags/Guinea.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Guinea.png
--------------------------------------------------------------------------------
/public/static/img/flags/Guyana.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Guyana.png
--------------------------------------------------------------------------------
/public/static/img/flags/Haiti.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Haiti.png
--------------------------------------------------------------------------------
/public/static/img/flags/Honduras.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Honduras.png
--------------------------------------------------------------------------------
/public/static/img/flags/Hong Kong.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Hong Kong.png
--------------------------------------------------------------------------------
/public/static/img/flags/Hungary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Hungary.png
--------------------------------------------------------------------------------
/public/static/img/flags/Iceland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Iceland.png
--------------------------------------------------------------------------------
/public/static/img/flags/India.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/India.png
--------------------------------------------------------------------------------
/public/static/img/flags/Indonezia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Indonezia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Iran.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Iran.png
--------------------------------------------------------------------------------
/public/static/img/flags/Iraq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Iraq.png
--------------------------------------------------------------------------------
/public/static/img/flags/Ireland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Ireland.png
--------------------------------------------------------------------------------
/public/static/img/flags/Islamic Conference.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Islamic Conference.png
--------------------------------------------------------------------------------
/public/static/img/flags/Isle of Man.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Isle of Man.png
--------------------------------------------------------------------------------
/public/static/img/flags/Israel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Israel.png
--------------------------------------------------------------------------------
/public/static/img/flags/Italy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Italy.png
--------------------------------------------------------------------------------
/public/static/img/flags/Jamaica.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Jamaica.png
--------------------------------------------------------------------------------
/public/static/img/flags/Japan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Japan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Jersey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Jersey.png
--------------------------------------------------------------------------------
/public/static/img/flags/Jordan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Jordan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Kazakhstan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Kazakhstan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Kenya.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Kenya.png
--------------------------------------------------------------------------------
/public/static/img/flags/Kiribati.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Kiribati.png
--------------------------------------------------------------------------------
/public/static/img/flags/Kosovo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Kosovo.png
--------------------------------------------------------------------------------
/public/static/img/flags/Kuwait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Kuwait.png
--------------------------------------------------------------------------------
/public/static/img/flags/Kyrgyzstan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Kyrgyzstan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Laos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Laos.png
--------------------------------------------------------------------------------
/public/static/img/flags/Latvia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Latvia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Lebanon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Lebanon.png
--------------------------------------------------------------------------------
/public/static/img/flags/Lesotho.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Lesotho.png
--------------------------------------------------------------------------------
/public/static/img/flags/Liberia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Liberia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Libya.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Libya.png
--------------------------------------------------------------------------------
/public/static/img/flags/Liechtenshein.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Liechtenshein.png
--------------------------------------------------------------------------------
/public/static/img/flags/Lithuania.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Lithuania.png
--------------------------------------------------------------------------------
/public/static/img/flags/Luxembourg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Luxembourg.png
--------------------------------------------------------------------------------
/public/static/img/flags/Macao.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Macao.png
--------------------------------------------------------------------------------
/public/static/img/flags/Macedonia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Macedonia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Madagascar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Madagascar.png
--------------------------------------------------------------------------------
/public/static/img/flags/Malawi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Malawi.png
--------------------------------------------------------------------------------
/public/static/img/flags/Malaysia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Malaysia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Maldives.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Maldives.png
--------------------------------------------------------------------------------
/public/static/img/flags/Mali.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Mali.png
--------------------------------------------------------------------------------
/public/static/img/flags/Malta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Malta.png
--------------------------------------------------------------------------------
/public/static/img/flags/Marshall Islands.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Marshall Islands.png
--------------------------------------------------------------------------------
/public/static/img/flags/Martinique.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Martinique.png
--------------------------------------------------------------------------------
/public/static/img/flags/Mauritania.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Mauritania.png
--------------------------------------------------------------------------------
/public/static/img/flags/Mauritius.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Mauritius.png
--------------------------------------------------------------------------------
/public/static/img/flags/Mexico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Mexico.png
--------------------------------------------------------------------------------
/public/static/img/flags/Micronesia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Micronesia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Moldova.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Moldova.png
--------------------------------------------------------------------------------
/public/static/img/flags/Monaco.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Monaco.png
--------------------------------------------------------------------------------
/public/static/img/flags/Mongolia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Mongolia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Montenegro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Montenegro.png
--------------------------------------------------------------------------------
/public/static/img/flags/Montserrat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Montserrat.png
--------------------------------------------------------------------------------
/public/static/img/flags/Morocco.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Morocco.png
--------------------------------------------------------------------------------
/public/static/img/flags/Mozambique.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Mozambique.png
--------------------------------------------------------------------------------
/public/static/img/flags/Myanmar(Burma).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Myanmar(Burma).png
--------------------------------------------------------------------------------
/public/static/img/flags/NATO.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/NATO.png
--------------------------------------------------------------------------------
/public/static/img/flags/Namibia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Namibia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Nauru.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Nauru.png
--------------------------------------------------------------------------------
/public/static/img/flags/Nepal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Nepal.png
--------------------------------------------------------------------------------
/public/static/img/flags/Netherlands Antilles.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Netherlands Antilles.png
--------------------------------------------------------------------------------
/public/static/img/flags/Netherlands.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Netherlands.png
--------------------------------------------------------------------------------
/public/static/img/flags/New Caledonia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/New Caledonia.png
--------------------------------------------------------------------------------
/public/static/img/flags/New Zealand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/New Zealand.png
--------------------------------------------------------------------------------
/public/static/img/flags/Nicaragua.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Nicaragua.png
--------------------------------------------------------------------------------
/public/static/img/flags/Niger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Niger.png
--------------------------------------------------------------------------------
/public/static/img/flags/Nigeria.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Nigeria.png
--------------------------------------------------------------------------------
/public/static/img/flags/North Korea.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/North Korea.png
--------------------------------------------------------------------------------
/public/static/img/flags/Northern Cyprus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Northern Cyprus.png
--------------------------------------------------------------------------------
/public/static/img/flags/Northern Ireland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Northern Ireland.png
--------------------------------------------------------------------------------
/public/static/img/flags/Norway.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Norway.png
--------------------------------------------------------------------------------
/public/static/img/flags/OPEC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/OPEC.png
--------------------------------------------------------------------------------
/public/static/img/flags/Olimpic Movement.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Olimpic Movement.png
--------------------------------------------------------------------------------
/public/static/img/flags/Oman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Oman.png
--------------------------------------------------------------------------------
/public/static/img/flags/Pakistan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Pakistan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Palau.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Palau.png
--------------------------------------------------------------------------------
/public/static/img/flags/Palestine.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Palestine.png
--------------------------------------------------------------------------------
/public/static/img/flags/Panama.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Panama.png
--------------------------------------------------------------------------------
/public/static/img/flags/Papua New Guinea.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Papua New Guinea.png
--------------------------------------------------------------------------------
/public/static/img/flags/Paraguay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Paraguay.png
--------------------------------------------------------------------------------
/public/static/img/flags/Peru.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Peru.png
--------------------------------------------------------------------------------
/public/static/img/flags/Philippines.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Philippines.png
--------------------------------------------------------------------------------
/public/static/img/flags/Poland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Poland.png
--------------------------------------------------------------------------------
/public/static/img/flags/Portugal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Portugal.png
--------------------------------------------------------------------------------
/public/static/img/flags/Puerto Rico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Puerto Rico.png
--------------------------------------------------------------------------------
/public/static/img/flags/Qatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Qatar.png
--------------------------------------------------------------------------------
/public/static/img/flags/Red Cross.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Red Cross.png
--------------------------------------------------------------------------------
/public/static/img/flags/Reunion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Reunion.png
--------------------------------------------------------------------------------
/public/static/img/flags/Romania.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Romania.png
--------------------------------------------------------------------------------
/public/static/img/flags/Russia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Russia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Rwanda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Rwanda.png
--------------------------------------------------------------------------------
/public/static/img/flags/Saint Lucia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Saint Lucia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Samoa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Samoa.png
--------------------------------------------------------------------------------
/public/static/img/flags/San Marino.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/San Marino.png
--------------------------------------------------------------------------------
/public/static/img/flags/Sao Tome & Principe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Sao Tome & Principe.png
--------------------------------------------------------------------------------
/public/static/img/flags/Saudi Arabia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Saudi Arabia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Scotland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Scotland.png
--------------------------------------------------------------------------------
/public/static/img/flags/Senegal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Senegal.png
--------------------------------------------------------------------------------
/public/static/img/flags/Serbia(Yugoslavia).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Serbia(Yugoslavia).png
--------------------------------------------------------------------------------
/public/static/img/flags/Seychelles.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Seychelles.png
--------------------------------------------------------------------------------
/public/static/img/flags/Sierra Leone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Sierra Leone.png
--------------------------------------------------------------------------------
/public/static/img/flags/Singapore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Singapore.png
--------------------------------------------------------------------------------
/public/static/img/flags/Slovakia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Slovakia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Slovenia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Slovenia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Solomon Islands.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Solomon Islands.png
--------------------------------------------------------------------------------
/public/static/img/flags/Somalia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Somalia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Somaliland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Somaliland.png
--------------------------------------------------------------------------------
/public/static/img/flags/South Africa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/South Africa.png
--------------------------------------------------------------------------------
/public/static/img/flags/South Korea.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/South Korea.png
--------------------------------------------------------------------------------
/public/static/img/flags/Spain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Spain.png
--------------------------------------------------------------------------------
/public/static/img/flags/Sri Lanka.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Sri Lanka.png
--------------------------------------------------------------------------------
/public/static/img/flags/St Kitts & Nevis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/St Kitts & Nevis.png
--------------------------------------------------------------------------------
/public/static/img/flags/St Vincent & the Grenadines.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/St Vincent & the Grenadines.png
--------------------------------------------------------------------------------
/public/static/img/flags/Sudan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Sudan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Suriname.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Suriname.png
--------------------------------------------------------------------------------
/public/static/img/flags/Swaziland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Swaziland.png
--------------------------------------------------------------------------------
/public/static/img/flags/Sweden.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Sweden.png
--------------------------------------------------------------------------------
/public/static/img/flags/Switzerland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Switzerland.png
--------------------------------------------------------------------------------
/public/static/img/flags/Syria.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Syria.png
--------------------------------------------------------------------------------
/public/static/img/flags/Tahiti(French Polinesia).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Tahiti(French Polinesia).png
--------------------------------------------------------------------------------
/public/static/img/flags/Taiwan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Taiwan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Tajikistan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Tajikistan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Tanzania.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Tanzania.png
--------------------------------------------------------------------------------
/public/static/img/flags/Thailand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Thailand.png
--------------------------------------------------------------------------------
/public/static/img/flags/Timor-Leste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Timor-Leste.png
--------------------------------------------------------------------------------
/public/static/img/flags/Togo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Togo.png
--------------------------------------------------------------------------------
/public/static/img/flags/Tonga.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Tonga.png
--------------------------------------------------------------------------------
/public/static/img/flags/Trinidad & Tobago.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Trinidad & Tobago.png
--------------------------------------------------------------------------------
/public/static/img/flags/Tunisia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Tunisia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Turkey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Turkey.png
--------------------------------------------------------------------------------
/public/static/img/flags/Turkmenistan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Turkmenistan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Turks and Caicos Islands.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Turks and Caicos Islands.png
--------------------------------------------------------------------------------
/public/static/img/flags/Tuvalu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Tuvalu.png
--------------------------------------------------------------------------------
/public/static/img/flags/USA.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/USA.png
--------------------------------------------------------------------------------
/public/static/img/flags/Uganda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Uganda.png
--------------------------------------------------------------------------------
/public/static/img/flags/Ukraine.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Ukraine.png
--------------------------------------------------------------------------------
/public/static/img/flags/United Arab Emirates.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/United Arab Emirates.png
--------------------------------------------------------------------------------
/public/static/img/flags/United Nations.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/United Nations.png
--------------------------------------------------------------------------------
/public/static/img/flags/United-Kingdom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/United-Kingdom.png
--------------------------------------------------------------------------------
/public/static/img/flags/Uruguay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Uruguay.png
--------------------------------------------------------------------------------
/public/static/img/flags/Uzbekistan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Uzbekistan.png
--------------------------------------------------------------------------------
/public/static/img/flags/Vanutau.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Vanutau.png
--------------------------------------------------------------------------------
/public/static/img/flags/Vatican City.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Vatican City.png
--------------------------------------------------------------------------------
/public/static/img/flags/Venezuela.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Venezuela.png
--------------------------------------------------------------------------------
/public/static/img/flags/Viet Nam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Viet Nam.png
--------------------------------------------------------------------------------
/public/static/img/flags/Virgin Islands British.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Virgin Islands British.png
--------------------------------------------------------------------------------
/public/static/img/flags/Virgin Islands US.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Virgin Islands US.png
--------------------------------------------------------------------------------
/public/static/img/flags/Wales.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Wales.png
--------------------------------------------------------------------------------
/public/static/img/flags/Western Sahara.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Western Sahara.png
--------------------------------------------------------------------------------
/public/static/img/flags/Yemen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Yemen.png
--------------------------------------------------------------------------------
/public/static/img/flags/Zambia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Zambia.png
--------------------------------------------------------------------------------
/public/static/img/flags/Zimbabwe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/flags/Zimbabwe.png
--------------------------------------------------------------------------------
/public/static/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/public/static/img/logo.png
--------------------------------------------------------------------------------
/public/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | ## Repository Deprecated
2 |
3 | As this repo was initially put togher as a starting point for developers who wanted to use CoreUI with Laravel, it now is deprecated as the CoreUI authors have released a Laravel version @ https://coreui.io/laravel/
4 |
5 | **This repository is no longer maintainted.**
6 |
7 | ---
8 |
9 | # Laravel 5.6 + CoreUI Admin Bootstrap Template VueJS
10 |
11 |
12 | ## What is this?
13 |
14 | A clean install of Laravel 5.5 with the [CoreUI Full Bootstrap Admin Template VueJS Version](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template) added in. This implementation is nowhere near to perfect but it's a working start. Pull Requests are welcome!
15 |
16 |
17 | ## What's it look like?
18 |
19 | [Here's a demo of the CoreUI theme running.](https://coreui.io/demo/)
20 |
21 |
22 | ## Getting Started
23 |
24 | If your here, you most likely know what Laravel is and hopefully how to get up and running with it. If not, [click here to check the docs on getting up and running](https://laravel.com/docs/5.6/). Also [Laracasts](https://laracasts.com) is a fantastic resource for getting up to speed with everything Laravel from pretty much any version.
25 |
26 |
27 | ## Head Up
28 |
29 | The version of the CoreUI theme that get's installed is not the latest version right now as the author's are re-structuring the repo to just be the free HTML template and then seperating each version (Angular, VueJS, React, etc) into their own repos. At this time the VueJS version has not been released.
30 |
--------------------------------------------------------------------------------
/resources/assets/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/resources/assets/img/logo.png
--------------------------------------------------------------------------------
/resources/assets/js/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
10 |
11 |
19 |
23 |
--------------------------------------------------------------------------------
/resources/assets/js/app.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * First we will load all of this project's JavaScript dependencies which
4 | * includes Vue and other libraries. It is a great starting point when
5 | * building robust, powerful web applications using Vue and Laravel.
6 | */
7 |
8 | require('./bootstrap');
9 |
10 | window.Vue = require('vue');
11 |
12 | /**
13 | * Next, we will create a fresh Vue application instance and attach it to
14 | * the page. Then, you may begin adding components to this application
15 | * or customize the JavaScript scaffolding to fit your unique needs.
16 | */
17 |
18 | // The Vue build version to load with the `import` command
19 | // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
20 | import Vue from 'vue';
21 | import BootstrapVue from 'bootstrap-vue';
22 | import App from './App.vue';
23 | import router from './router';
24 |
25 | Vue.component('App', require('./App.vue'));
26 | Vue.use(BootstrapVue);
27 |
28 | /* eslint-disable no-new */
29 | new Vue({
30 | el: '#app',
31 | router,
32 | template: '',
33 | components: {
34 | App
35 | }
36 | })
37 |
--------------------------------------------------------------------------------
/resources/assets/js/components/Breadcrumb.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | - {{ showName(item) }}
4 | {{ showName(item) }}
5 |
6 |
7 |
8 |
9 |
34 |
--------------------------------------------------------------------------------
/resources/assets/js/components/Callout.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
27 |
--------------------------------------------------------------------------------
/resources/assets/js/components/Footer.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
--------------------------------------------------------------------------------
/resources/assets/js/components/SidebarNavDropdown.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{name}}
4 |
7 |
8 |
9 |
10 |
34 |
--------------------------------------------------------------------------------
/resources/assets/js/components/SidebarNavLink.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{name}}
4 | {{badge.text}}
5 |
6 |
7 |
8 |
30 |
--------------------------------------------------------------------------------
/resources/assets/js/components/SidebarNavTitle.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{name}}
4 |
5 |
6 |
7 |
17 |
--------------------------------------------------------------------------------
/resources/assets/js/components/index.js:
--------------------------------------------------------------------------------
1 | import Aside from './Aside.vue'
2 | import Breadcrumb from './Breadcrumb.vue'
3 | import Callout from './Callout.vue'
4 | import Footer from './Footer.vue'
5 | import Header from './Header.vue'
6 | import Sidebar from './Sidebar.vue'
7 | import Switch from './Switch.vue'
8 |
9 | export {
10 | Aside,
11 | Breadcrumb,
12 | Callout,
13 | Footer,
14 | Header,
15 | Sidebar,
16 | Switch
17 | }
18 |
--------------------------------------------------------------------------------
/resources/assets/js/containers/Full.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
46 |
--------------------------------------------------------------------------------
/resources/assets/js/views/Charts.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
28 |
29 |
30 |
33 |
34 |
35 |
36 |
37 |
57 |
--------------------------------------------------------------------------------
/resources/assets/js/views/charts/BarExample.vue:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/resources/assets/js/views/charts/DoughnutExample.vue:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/resources/assets/js/views/charts/LineExample.vue:
--------------------------------------------------------------------------------
1 |
19 |
--------------------------------------------------------------------------------
/resources/assets/js/views/charts/PieExample.vue:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/resources/assets/js/views/charts/PolarAreaExample.vue:
--------------------------------------------------------------------------------
1 |
32 |
--------------------------------------------------------------------------------
/resources/assets/js/views/charts/RadarExample.vue:
--------------------------------------------------------------------------------
1 |
34 |
--------------------------------------------------------------------------------
/resources/assets/js/views/dashboard/CardBarChartExample.vue:
--------------------------------------------------------------------------------
1 |
38 |
--------------------------------------------------------------------------------
/resources/assets/js/views/dashboard/CardLine1ChartExample.vue:
--------------------------------------------------------------------------------
1 |
59 |
--------------------------------------------------------------------------------
/resources/assets/js/views/dashboard/CardLine2ChartExample.vue:
--------------------------------------------------------------------------------
1 |
61 |
--------------------------------------------------------------------------------
/resources/assets/js/views/dashboard/CardLine3ChartExample.vue:
--------------------------------------------------------------------------------
1 |
46 |
--------------------------------------------------------------------------------
/resources/assets/js/views/dashboard/SocialBoxChartExample.vue:
--------------------------------------------------------------------------------
1 |
44 |
--------------------------------------------------------------------------------
/resources/assets/js/views/pages/Page404.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
404
8 |
Oops! You're lost.
9 |
The page you are looking for was not found.
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
29 |
--------------------------------------------------------------------------------
/resources/assets/js/views/pages/Page500.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
500
8 |
Houston, we have a problem!
9 |
The page you are looking for is temporarily unavailable.
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
29 |
--------------------------------------------------------------------------------
/resources/assets/scss/_core-variables.scss:
--------------------------------------------------------------------------------
1 | // core overrides
2 |
--------------------------------------------------------------------------------
/resources/assets/scss/_custom.scss:
--------------------------------------------------------------------------------
1 | // Here you can add other styles
2 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_alert.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Base styles
3 | //
4 |
5 | .alert {
6 | padding: $alert-padding-y $alert-padding-x;
7 | margin-bottom: $alert-margin-bottom;
8 | border: $alert-border-width solid transparent;
9 | @include border-radius($alert-border-radius);
10 | }
11 |
12 | // Headings for larger alerts
13 | .alert-heading {
14 | // Specified to prevent conflicts of changing $headings-color
15 | color: inherit;
16 | }
17 |
18 | // Provide class for links that match alerts
19 | .alert-link {
20 | font-weight: $alert-link-font-weight;
21 | }
22 |
23 |
24 | // Dismissible alerts
25 | //
26 | // Expand the right padding and account for the close button's positioning.
27 |
28 | .alert-dismissible {
29 | // Adjust close link position
30 | .close {
31 | position: relative;
32 | top: -$alert-padding-y;
33 | right: -$alert-padding-x;
34 | padding: $alert-padding-y $alert-padding-x;
35 | color: inherit;
36 | }
37 | }
38 |
39 |
40 | // Alternate styles
41 | //
42 | // Generate contextual modifier classes for colorizing the alert.
43 |
44 | @each $color, $value in $theme-colors {
45 | .alert-#{$color} {
46 | @include alert-variant(theme-color-level($color, -10), theme-color-level($color, -9), theme-color-level($color, 6));
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_badge.scss:
--------------------------------------------------------------------------------
1 | // Base class
2 | //
3 | // Requires one of the contextual, color modifier classes for `color` and
4 | // `background-color`.
5 |
6 | .badge {
7 | display: inline-block;
8 | padding: $badge-padding-y $badge-padding-x;
9 | font-size: $badge-font-size;
10 | font-weight: $badge-font-weight;
11 | line-height: 1;
12 | color: $badge-color;
13 | text-align: center;
14 | white-space: nowrap;
15 | vertical-align: baseline;
16 | @include border-radius();
17 |
18 | // Empty badges collapse automatically
19 | &:empty {
20 | display: none;
21 | }
22 | }
23 |
24 | // Quick fix for badges in buttons
25 | .btn .badge {
26 | position: relative;
27 | top: -1px;
28 | }
29 |
30 | // Pill badges
31 | //
32 | // Make them extra rounded with a modifier to replace v3's badges.
33 |
34 | .badge-pill {
35 | padding-right: $badge-pill-padding-x;
36 | padding-left: $badge-pill-padding-x;
37 | @include border-radius($badge-pill-border-radius);
38 | }
39 |
40 | // Colors
41 | //
42 | // Contextual variations (linked badges get darker on :hover).
43 |
44 | @each $color, $value in $theme-colors {
45 | .badge-#{$color} {
46 | @include badge-variant($value);
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_breadcrumb.scss:
--------------------------------------------------------------------------------
1 | .breadcrumb {
2 | padding: $breadcrumb-padding-y $breadcrumb-padding-x;
3 | margin-bottom: 1rem;
4 | list-style: none;
5 | background-color: $breadcrumb-bg;
6 | @include border-radius($border-radius);
7 | @include clearfix;
8 | }
9 |
10 | .breadcrumb-item {
11 | float: left;
12 |
13 | // The separator between breadcrumbs (by default, a forward-slash: "/")
14 | + .breadcrumb-item::before {
15 | display: inline-block; // Suppress underlining of the separator in modern browsers
16 | padding-right: $breadcrumb-item-padding;
17 | padding-left: $breadcrumb-item-padding;
18 | color: $breadcrumb-divider-color;
19 | content: "#{$breadcrumb-divider}";
20 | }
21 |
22 | // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built
23 | // without `
`s. The `::before` pseudo-element generates an element
24 | // *within* the .breadcrumb-item and thereby inherits the `text-decoration`.
25 | //
26 | // To trick IE into suppressing the underline, we give the pseudo-element an
27 | // underline and then immediately remove it.
28 | + .breadcrumb-item:hover::before {
29 | text-decoration: underline;
30 | }
31 | + .breadcrumb-item:hover::before {
32 | text-decoration: none;
33 | }
34 |
35 | &.active {
36 | color: $breadcrumb-active-color;
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_close.scss:
--------------------------------------------------------------------------------
1 | .close {
2 | float: right;
3 | font-size: $close-font-size;
4 | font-weight: $close-font-weight;
5 | line-height: 1;
6 | color: $close-color;
7 | text-shadow: $close-text-shadow;
8 | opacity: .5;
9 |
10 | @include hover-focus {
11 | color: $close-color;
12 | text-decoration: none;
13 | opacity: .75;
14 | }
15 | }
16 |
17 | // Additional properties for button version
18 | // iOS requires the button element instead of an anchor tag.
19 | // If you want the anchor version, it requires `href="#"`.
20 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
21 |
22 | // scss-lint:disable QualifyingElement
23 | button.close {
24 | padding: 0;
25 | background: transparent;
26 | border: 0;
27 | -webkit-appearance: none;
28 | }
29 | // scss-lint:enable QualifyingElement
30 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_code.scss:
--------------------------------------------------------------------------------
1 | // Inline and block code styles
2 | code,
3 | kbd,
4 | pre,
5 | samp {
6 | font-family: $font-family-monospace;
7 | }
8 |
9 | // Inline code
10 | code {
11 | padding: $code-padding-y $code-padding-x;
12 | font-size: $code-font-size;
13 | color: $code-color;
14 | background-color: $code-bg;
15 | @include border-radius($border-radius);
16 |
17 | // Streamline the style when inside anchors to avoid broken underline and more
18 | a > & {
19 | padding: 0;
20 | color: inherit;
21 | background-color: inherit;
22 | }
23 | }
24 |
25 | // User input typically entered via keyboard
26 | kbd {
27 | padding: $code-padding-y $code-padding-x;
28 | font-size: $code-font-size;
29 | color: $kbd-color;
30 | background-color: $kbd-bg;
31 | @include border-radius($border-radius-sm);
32 | @include box-shadow($kbd-box-shadow);
33 |
34 | kbd {
35 | padding: 0;
36 | font-size: 100%;
37 | font-weight: $nested-kbd-font-weight;
38 | @include box-shadow(none);
39 | }
40 | }
41 |
42 | // Blocks of code
43 | pre {
44 | display: block;
45 | margin-top: 0;
46 | margin-bottom: 1rem;
47 | font-size: $code-font-size;
48 | color: $pre-color;
49 |
50 | // Account for some code outputs that place code tags in pre tags
51 | code {
52 | padding: 0;
53 | font-size: inherit;
54 | color: inherit;
55 | background-color: transparent;
56 | border-radius: 0;
57 | }
58 | }
59 |
60 | // Enable scrollable blocks of code
61 | .pre-scrollable {
62 | max-height: $pre-scrollable-max-height;
63 | overflow-y: scroll;
64 | }
65 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_grid.scss:
--------------------------------------------------------------------------------
1 | // Container widths
2 | //
3 | // Set the container width, and override it for fixed navbars in media queries.
4 |
5 | @if $enable-grid-classes {
6 | .container {
7 | @include make-container();
8 | @include make-container-max-widths();
9 | }
10 | }
11 |
12 | // Fluid container
13 | //
14 | // Utilizes the mixin meant for fixed width containers, but with 100% width for
15 | // fluid, full width layouts.
16 |
17 | @if $enable-grid-classes {
18 | .container-fluid {
19 | width: 100%;
20 | @include make-container();
21 | }
22 | }
23 |
24 | // Row
25 | //
26 | // Rows contain and clear the floats of your columns.
27 |
28 | @if $enable-grid-classes {
29 | .row {
30 | @include make-row();
31 | }
32 |
33 | // Remove the negative margin from default .row, then the horizontal padding
34 | // from all immediate children columns (to prevent runaway style inheritance).
35 | .no-gutters {
36 | margin-right: 0;
37 | margin-left: 0;
38 |
39 | > .col,
40 | > [class*="col-"] {
41 | padding-right: 0;
42 | padding-left: 0;
43 | }
44 | }
45 | }
46 |
47 | // Columns
48 | //
49 | // Common styles for small and large grid columns
50 |
51 | @if $enable-grid-classes {
52 | @include make-grid-columns();
53 | }
54 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_images.scss:
--------------------------------------------------------------------------------
1 | // Responsive images (ensure images don't scale beyond their parents)
2 | //
3 | // This is purposefully opt-in via an explicit class rather than being the default for all `
`s.
4 | // We previously tried the "images are responsive by default" approach in Bootstrap v2,
5 | // and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)
6 | // which weren't expecting the images within themselves to be involuntarily resized.
7 | // See also https://github.com/twbs/bootstrap/issues/18178
8 | .img-fluid {
9 | @include img-fluid;
10 | }
11 |
12 |
13 | // Image thumbnails
14 | .img-thumbnail {
15 | padding: $thumbnail-padding;
16 | background-color: $thumbnail-bg;
17 | border: $thumbnail-border-width solid $thumbnail-border-color;
18 | @include border-radius($thumbnail-border-radius);
19 | @include transition($thumbnail-transition);
20 | @include box-shadow($thumbnail-box-shadow);
21 |
22 | // Keep them at most 100% wide
23 | @include img-fluid;
24 | }
25 |
26 | //
27 | // Figures
28 | //
29 |
30 | .figure {
31 | // Ensures the caption's text aligns with the image.
32 | display: inline-block;
33 | }
34 |
35 | .figure-img {
36 | margin-bottom: ($spacer / 2);
37 | line-height: 1;
38 | }
39 |
40 | .figure-caption {
41 | font-size: $figure-caption-font-size;
42 | color: $figure-caption-color;
43 | }
44 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_jumbotron.scss:
--------------------------------------------------------------------------------
1 | .jumbotron {
2 | padding: $jumbotron-padding ($jumbotron-padding / 2);
3 | margin-bottom: $jumbotron-padding;
4 | background-color: $jumbotron-bg;
5 | @include border-radius($border-radius-lg);
6 |
7 | @include media-breakpoint-up(sm) {
8 | padding: ($jumbotron-padding * 2) $jumbotron-padding;
9 | }
10 | }
11 |
12 | .jumbotron-fluid {
13 | padding-right: 0;
14 | padding-left: 0;
15 | @include border-radius(0);
16 | }
17 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_media.scss:
--------------------------------------------------------------------------------
1 | .media {
2 | display: flex;
3 | align-items: flex-start;
4 | }
5 |
6 | .media-body {
7 | flex: 1;
8 | }
9 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_mixins.scss:
--------------------------------------------------------------------------------
1 | // Toggles
2 | //
3 | // Used in conjunction with global variables to enable certain theme features.
4 |
5 | // Utilities
6 | @import "mixins/breakpoints";
7 | @import "mixins/hover";
8 | @import "mixins/image";
9 | @import "mixins/badge";
10 | @import "mixins/resize";
11 | @import "mixins/screen-reader";
12 | @import "mixins/size";
13 | @import "mixins/reset-text";
14 | @import "mixins/text-emphasis";
15 | @import "mixins/text-hide";
16 | @import "mixins/text-truncate";
17 | @import "mixins/visibility";
18 |
19 | // // Components
20 | @import "mixins/alert";
21 | @import "mixins/buttons";
22 | @import "mixins/pagination";
23 | @import "mixins/lists";
24 | @import "mixins/list-group";
25 | @import "mixins/nav-divider";
26 | @import "mixins/forms";
27 | @import "mixins/table-row";
28 |
29 | // // Skins
30 | @import "mixins/background-variant";
31 | @import "mixins/border-radius";
32 | @import "mixins/box-shadow";
33 | @import "mixins/gradients";
34 | @import "mixins/transition";
35 |
36 | // // Layout
37 | @import "mixins/clearfix";
38 | // @import "mixins/navbar-align";
39 | @import "mixins/grid-framework";
40 | @import "mixins/grid";
41 | @import "mixins/float";
42 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_pagination.scss:
--------------------------------------------------------------------------------
1 | .pagination {
2 | display: flex;
3 | // 1-2: Disable browser default list styles
4 | padding-left: 0; // 1
5 | list-style: none; // 2
6 | @include border-radius();
7 | }
8 |
9 | .page-item {
10 | &:first-child {
11 | .page-link {
12 | margin-left: 0;
13 | @include border-left-radius($border-radius);
14 | }
15 | }
16 | &:last-child {
17 | .page-link {
18 | @include border-right-radius($border-radius);
19 | }
20 | }
21 |
22 | &.active .page-link {
23 | z-index: 2;
24 | color: $pagination-active-color;
25 | background-color: $pagination-active-bg;
26 | border-color: $pagination-active-border-color;
27 | }
28 |
29 | &.disabled .page-link {
30 | color: $pagination-disabled-color;
31 | pointer-events: none;
32 | background-color: $pagination-disabled-bg;
33 | border-color: $pagination-disabled-border-color;
34 | }
35 | }
36 |
37 | .page-link {
38 | position: relative;
39 | display: block;
40 | padding: $pagination-padding-y $pagination-padding-x;
41 | margin-left: -1px;
42 | line-height: $pagination-line-height;
43 | color: $pagination-color;
44 | background-color: $pagination-bg;
45 | border: $pagination-border-width solid $pagination-border-color;
46 |
47 | @include hover-focus {
48 | color: $pagination-hover-color;
49 | text-decoration: none;
50 | background-color: $pagination-hover-bg;
51 | border-color: $pagination-hover-border-color;
52 | }
53 | }
54 |
55 |
56 | //
57 | // Sizing
58 | //
59 |
60 | .pagination-lg {
61 | @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $border-radius-lg);
62 | }
63 |
64 | .pagination-sm {
65 | @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $border-radius-sm);
66 | }
67 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_progress.scss:
--------------------------------------------------------------------------------
1 | @keyframes progress-bar-stripes {
2 | from { background-position: $progress-height 0; }
3 | to { background-position: 0 0; }
4 | }
5 |
6 | .progress {
7 | display: flex;
8 | overflow: hidden; // force rounded corners by cropping it
9 | font-size: $progress-font-size;
10 | line-height: $progress-height;
11 | text-align: center;
12 | background-color: $progress-bg;
13 | @include border-radius($progress-border-radius);
14 | @include box-shadow($progress-box-shadow);
15 | }
16 |
17 | .progress-bar {
18 | height: $progress-height;
19 | line-height: $progress-height;
20 | color: $progress-bar-color;
21 | background-color: $progress-bar-bg;
22 | @include transition($progress-bar-transition);
23 | }
24 |
25 | .progress-bar-striped {
26 | @include gradient-striped();
27 | background-size: $progress-height $progress-height;
28 | }
29 |
30 | .progress-bar-animated {
31 | animation: progress-bar-stripes $progress-bar-animation-timing;
32 | }
33 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_transitions.scss:
--------------------------------------------------------------------------------
1 | .fade {
2 | opacity: 0;
3 | @include transition($transition-fade);
4 |
5 | &.show {
6 | opacity: 1;
7 | }
8 | }
9 |
10 | .collapse {
11 | display: none;
12 | &.show {
13 | display: block;
14 | }
15 | }
16 |
17 | tr {
18 | &.collapse.show {
19 | display: table-row;
20 | }
21 | }
22 |
23 | tbody {
24 | &.collapse.show {
25 | display: table-row-group;
26 | }
27 | }
28 |
29 | .collapsing {
30 | position: relative;
31 | height: 0;
32 | overflow: hidden;
33 | @include transition($transition-collapse);
34 | }
35 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/_utilities.scss:
--------------------------------------------------------------------------------
1 | @import "utilities/align";
2 | @import "utilities/background";
3 | @import "utilities/borders";
4 | @import "utilities/clearfix";
5 | @import "utilities/display";
6 | @import "utilities/embed";
7 | @import "utilities/flex";
8 | @import "utilities/float";
9 | @import "utilities/position";
10 | @import "utilities/screenreaders";
11 | @import "utilities/sizing";
12 | @import "utilities/spacing";
13 | @import "utilities/text";
14 | @import "utilities/visibility";
15 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/bootstrap-grid.scss:
--------------------------------------------------------------------------------
1 | // Bootstrap Grid only
2 | //
3 | // Includes relevant variables and mixins for the flexbox grid
4 | // system, as well as the generated predefined classes (e.g., `.col-sm-4`).
5 |
6 | //
7 | // Box sizing, responsive, and more
8 | //
9 |
10 | @at-root {
11 | @-ms-viewport { width: device-width; }
12 | }
13 |
14 | html {
15 | box-sizing: border-box;
16 | -ms-overflow-style: scrollbar;
17 | }
18 |
19 | *,
20 | *::before,
21 | *::after {
22 | box-sizing: inherit;
23 | }
24 |
25 | @import "functions";
26 | @import "variables";
27 |
28 | //
29 | // Grid mixins
30 | //
31 |
32 | @import "mixins/breakpoints";
33 | @import "mixins/grid-framework";
34 | @import "mixins/grid";
35 |
36 | @import "grid";
37 | @import "utilities/flex";
38 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/bootstrap-reboot.scss:
--------------------------------------------------------------------------------
1 | // Bootstrap Reboot only
2 | //
3 | // Includes only Normalize and our custom Reboot reset.
4 |
5 | @import "functions";
6 | @import "variables";
7 | @import "mixins";
8 |
9 | @import "reboot";
10 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/bootstrap.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v4.0.0-beta (https://getbootstrap.com)
3 | * Copyright 2011-2017 The Bootstrap Authors
4 | * Copyright 2011-2017 Twitter, Inc.
5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6 | */
7 |
8 | @import "functions";
9 | @import "variables";
10 | @import "mixins";
11 | @import "print";
12 | @import "reboot";
13 | @import "type";
14 | @import "images";
15 | @import "code";
16 | @import "grid";
17 | @import "tables";
18 | @import "forms";
19 | @import "buttons";
20 | @import "transitions";
21 | @import "dropdown";
22 | @import "button-group";
23 | @import "input-group";
24 | @import "custom-forms";
25 | @import "nav";
26 | @import "navbar";
27 | @import "card";
28 | @import "breadcrumb";
29 | @import "pagination";
30 | @import "badge";
31 | @import "jumbotron";
32 | @import "alert";
33 | @import "progress";
34 | @import "media";
35 | @import "list-group";
36 | @import "close";
37 | @import "modal";
38 | @import "tooltip";
39 | @import "popover";
40 | @import "carousel";
41 | @import "utilities";
42 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_alert.scss:
--------------------------------------------------------------------------------
1 | @mixin alert-variant($background, $border, $color) {
2 | color: $color;
3 | background-color: $background;
4 | border-color: $border;
5 |
6 | hr {
7 | border-top-color: darken($border, 5%);
8 | }
9 |
10 | .alert-link {
11 | color: darken($color, 10%);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_background-variant.scss:
--------------------------------------------------------------------------------
1 | // Contextual backgrounds
2 |
3 | @mixin bg-variant($parent, $color) {
4 | #{$parent} {
5 | background-color: $color !important;
6 | }
7 | a#{$parent} {
8 | @include hover-focus {
9 | background-color: darken($color, 10%) !important;
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_badge.scss:
--------------------------------------------------------------------------------
1 | @mixin badge-variant($bg) {
2 | @include color-yiq($bg);
3 | background-color: $bg;
4 |
5 | &[href] {
6 | @include hover-focus {
7 | @include color-yiq($bg);
8 | text-decoration: none;
9 | background-color: darken($bg, 10%);
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_border-radius.scss:
--------------------------------------------------------------------------------
1 | // Single side border-radius
2 |
3 | @mixin border-radius($radius: $border-radius) {
4 | @if $enable-rounded {
5 | border-radius: $radius;
6 | }
7 | }
8 |
9 | @mixin border-top-radius($radius) {
10 | @if $enable-rounded {
11 | border-top-left-radius: $radius;
12 | border-top-right-radius: $radius;
13 | }
14 | }
15 |
16 | @mixin border-right-radius($radius) {
17 | @if $enable-rounded {
18 | border-top-right-radius: $radius;
19 | border-bottom-right-radius: $radius;
20 | }
21 | }
22 |
23 | @mixin border-bottom-radius($radius) {
24 | @if $enable-rounded {
25 | border-bottom-right-radius: $radius;
26 | border-bottom-left-radius: $radius;
27 | }
28 | }
29 |
30 | @mixin border-left-radius($radius) {
31 | @if $enable-rounded {
32 | border-top-left-radius: $radius;
33 | border-bottom-left-radius: $radius;
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_box-shadow.scss:
--------------------------------------------------------------------------------
1 | @mixin box-shadow($shadow...) {
2 | @if $enable-shadows {
3 | box-shadow: $shadow;
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_clearfix.scss:
--------------------------------------------------------------------------------
1 | @mixin clearfix() {
2 | &::after {
3 | display: block;
4 | clear: both;
5 | content: "";
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_float.scss:
--------------------------------------------------------------------------------
1 | @mixin float-left {
2 | float: left !important;
3 | }
4 | @mixin float-right {
5 | float: right !important;
6 | }
7 | @mixin float-none {
8 | float: none !important;
9 | }
10 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_grid-framework.scss:
--------------------------------------------------------------------------------
1 | // Framework grid generation
2 | //
3 | // Used only by Bootstrap to generate the correct number of grid classes given
4 | // any value of `$grid-columns`.
5 |
6 | @mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
7 | // Common properties for all breakpoints
8 | %grid-column {
9 | position: relative;
10 | width: 100%;
11 | min-height: 1px; // Prevent columns from collapsing when empty
12 | padding-right: ($gutter / 2);
13 | padding-left: ($gutter / 2);
14 | }
15 |
16 | @each $breakpoint in map-keys($breakpoints) {
17 | $infix: breakpoint-infix($breakpoint, $breakpoints);
18 |
19 | // Allow columns to stretch full width below their breakpoints
20 | @for $i from 1 through $columns {
21 | .col#{$infix}-#{$i} {
22 | @extend %grid-column;
23 | }
24 | }
25 | .col#{$infix},
26 | .col#{$infix}-auto {
27 | @extend %grid-column;
28 | }
29 |
30 | @include media-breakpoint-up($breakpoint, $breakpoints) {
31 | // Provide basic `.col-{bp}` classes for equal-width flexbox columns
32 | .col#{$infix} {
33 | flex-basis: 0;
34 | flex-grow: 1;
35 | max-width: 100%;
36 | }
37 | .col#{$infix}-auto {
38 | flex: 0 0 auto;
39 | width: auto;
40 | max-width: none; // Reset earlier grid tiers
41 | }
42 |
43 | @for $i from 1 through $columns {
44 | .col#{$infix}-#{$i} {
45 | @include make-col($i, $columns);
46 | }
47 | }
48 |
49 | @for $i from 1 through $columns {
50 | .order#{$infix}-#{$i} {
51 | order: $i;
52 | }
53 | }
54 | }
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_grid.scss:
--------------------------------------------------------------------------------
1 | /// Grid system
2 | //
3 | // Generate semantic grid columns with these mixins.
4 |
5 | @mixin make-container() {
6 | margin-right: auto;
7 | margin-left: auto;
8 | padding-right: ($grid-gutter-width / 2);
9 | padding-left: ($grid-gutter-width / 2);
10 | width: 100%;
11 | }
12 |
13 |
14 | // For each breakpoint, define the maximum width of the container in a media query
15 | @mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
16 | @each $breakpoint, $container-max-width in $max-widths {
17 | @include media-breakpoint-up($breakpoint, $breakpoints) {
18 | max-width: $container-max-width;
19 | }
20 | }
21 | }
22 |
23 | @mixin make-row() {
24 | display: flex;
25 | flex-wrap: wrap;
26 | margin-right: ($grid-gutter-width / -2);
27 | margin-left: ($grid-gutter-width / -2);
28 | }
29 |
30 | @mixin make-col-ready() {
31 | position: relative;
32 | // Prevent columns from becoming too narrow when at smaller grid tiers by
33 | // always setting `width: 100%;`. This works because we use `flex` values
34 | // later on to override this initial width.
35 | width: 100%;
36 | min-height: 1px; // Prevent collapsing
37 | padding-right: ($grid-gutter-width / 2);
38 | padding-left: ($grid-gutter-width / 2);
39 | }
40 |
41 | @mixin make-col($size, $columns: $grid-columns) {
42 | flex: 0 0 percentage($size / $columns);
43 | // Add a `max-width` to ensure content within each column does not blow out
44 | // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
45 | // do not appear to require this.
46 | max-width: percentage($size / $columns);
47 | }
48 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_hover.scss:
--------------------------------------------------------------------------------
1 | @mixin hover {
2 | // TODO: re-enable along with mq4-hover-shim
3 | // @if $enable-hover-media-query {
4 | // // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover
5 | // // Currently shimmed by https://github.com/twbs/mq4-hover-shim
6 | // @media (hover: hover) {
7 | // &:hover { @content }
8 | // }
9 | // }
10 | // @else {
11 | // scss-lint:disable Indentation
12 | &:hover { @content }
13 | // scss-lint:enable Indentation
14 | // }
15 | }
16 |
17 |
18 | @mixin hover-focus {
19 | @if $enable-hover-media-query {
20 | &:focus { @content }
21 | @include hover { @content }
22 | } @else {
23 | &:focus,
24 | &:hover {
25 | @content
26 | }
27 | }
28 | }
29 |
30 | @mixin plain-hover-focus {
31 | @if $enable-hover-media-query {
32 | &,
33 | &:focus {
34 | @content
35 | }
36 | @include hover { @content }
37 | } @else {
38 | &,
39 | &:focus,
40 | &:hover {
41 | @content
42 | }
43 | }
44 | }
45 |
46 | @mixin hover-focus-active {
47 | @if $enable-hover-media-query {
48 | &:focus,
49 | &:active {
50 | @content
51 | }
52 | @include hover { @content }
53 | } @else {
54 | &:focus,
55 | &:active,
56 | &:hover {
57 | @content
58 | }
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_image.scss:
--------------------------------------------------------------------------------
1 | // Image Mixins
2 | // - Responsive image
3 | // - Retina image
4 |
5 |
6 | // Responsive image
7 | //
8 | // Keep images from scaling beyond the width of their parents.
9 |
10 | @mixin img-fluid {
11 | // Part 1: Set a maximum relative to the parent
12 | max-width: 100%;
13 | // Part 2: Override the height to auto, otherwise images will be stretched
14 | // when setting a width and height attribute on the img element.
15 | height: auto;
16 | }
17 |
18 |
19 | // Retina image
20 | //
21 | // Short retina mixin for setting background-image and -size.
22 |
23 | @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
24 | background-image: url($file-1x);
25 |
26 | // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
27 | // but doesn't convert dppx=>dpi.
28 | // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
29 | // Compatibility info: http://caniuse.com/#feat=css-media-resolution
30 | @media
31 | only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
32 | only screen and (min-resolution: 2dppx) { // Standardized
33 | background-image: url($file-2x);
34 | background-size: $width-1x $height-1x;
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_list-group.scss:
--------------------------------------------------------------------------------
1 | // List Groups
2 |
3 | @mixin list-group-item-variant($state, $background, $color) {
4 | .list-group-item-#{$state} {
5 | color: $color;
6 | background-color: $background;
7 | }
8 |
9 | //scss-lint:disable QualifyingElement
10 | a.list-group-item-#{$state},
11 | button.list-group-item-#{$state} {
12 | color: $color;
13 |
14 | @include hover-focus {
15 | color: $color;
16 | background-color: darken($background, 5%);
17 | }
18 |
19 | &.active {
20 | color: #fff;
21 | background-color: $color;
22 | border-color: $color;
23 | }
24 | }
25 | // scss-lint:enable QualifyingElement
26 | }
27 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_lists.scss:
--------------------------------------------------------------------------------
1 | // Lists
2 |
3 | // Unstyled keeps list items block level, just removes default browser padding and list-style
4 | @mixin list-unstyled {
5 | padding-left: 0;
6 | list-style: none;
7 | }
8 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_nav-divider.scss:
--------------------------------------------------------------------------------
1 | // Horizontal dividers
2 | //
3 | // Dividers (basically an hr) within dropdowns and nav lists
4 |
5 | @mixin nav-divider($color: #e5e5e5) {
6 | height: 0;
7 | margin: ($spacer / 2) 0;
8 | overflow: hidden;
9 | border-top: 1px solid $color;
10 | }
11 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_navbar-align.scss:
--------------------------------------------------------------------------------
1 | // Navbar vertical align
2 | //
3 | // Vertically center elements in the navbar.
4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
5 |
6 | // @mixin navbar-vertical-align($element-height) {
7 | // margin-top: (($navbar-height - $element-height) / 2);
8 | // margin-bottom: (($navbar-height - $element-height) / 2);
9 | // }
10 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_pagination.scss:
--------------------------------------------------------------------------------
1 | // Pagination
2 |
3 | @mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
4 | .page-link {
5 | padding: $padding-y $padding-x;
6 | font-size: $font-size;
7 | line-height: $line-height;
8 | }
9 |
10 | .page-item {
11 | &:first-child {
12 | .page-link {
13 | @include border-left-radius($border-radius);
14 | }
15 | }
16 | &:last-child {
17 | .page-link {
18 | @include border-right-radius($border-radius);
19 | }
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_reset-text.scss:
--------------------------------------------------------------------------------
1 | // scss-lint:disable DuplicateProperty
2 | @mixin reset-text {
3 | font-family: $font-family-base;
4 | // We deliberately do NOT reset font-size or word-wrap.
5 | font-style: normal;
6 | font-weight: $font-weight-normal;
7 | line-height: $line-height-base;
8 | text-align: left; // Fallback for where `start` is not supported
9 | text-align: start;
10 | text-decoration: none;
11 | text-shadow: none;
12 | text-transform: none;
13 | letter-spacing: normal;
14 | word-break: normal;
15 | word-spacing: normal;
16 | white-space: normal;
17 | line-break: auto;
18 | }
19 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_resize.scss:
--------------------------------------------------------------------------------
1 | // Resize anything
2 |
3 | @mixin resizable($direction) {
4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
5 | resize: $direction; // Options: horizontal, vertical, both
6 | }
7 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Only display content to screen readers
2 | //
3 | // See: http://a11yproject.com/posts/how-to-hide-content
4 | // See: http://hugogiraudel.com/2016/10/13/css-hide-and-seek/
5 |
6 | @mixin sr-only {
7 | position: absolute;
8 | width: 1px;
9 | height: 1px;
10 | padding: 0;
11 | overflow: hidden;
12 | clip: rect(0,0,0,0);
13 | white-space: nowrap;
14 | clip-path: inset(50%);
15 | border: 0;
16 | }
17 |
18 | // Use in conjunction with .sr-only to only display content when it's focused.
19 | //
20 | // Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
21 | //
22 | // Credit: HTML5 Boilerplate
23 |
24 | @mixin sr-only-focusable {
25 | &:active,
26 | &:focus {
27 | position: static;
28 | width: auto;
29 | height: auto;
30 | overflow: visible;
31 | clip: auto;
32 | white-space: normal;
33 | clip-path: none;
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_size.scss:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | @mixin size($width, $height: $width) {
4 | width: $width;
5 | height: $height;
6 | }
7 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_table-row.scss:
--------------------------------------------------------------------------------
1 | // Tables
2 |
3 | @mixin table-row-variant($state, $background) {
4 | // Exact selectors below required to override `.table-striped` and prevent
5 | // inheritance to nested tables.
6 | .table-#{$state} {
7 | &,
8 | > th,
9 | > td {
10 | background-color: $background;
11 | }
12 | }
13 |
14 | // Hover states for `.table-hover`
15 | // Note: this is not available for cells or rows within `thead` or `tfoot`.
16 | .table-hover {
17 | $hover-background: darken($background, 5%);
18 |
19 | .table-#{$state} {
20 | @include hover {
21 | background-color: $hover-background;
22 |
23 | > td,
24 | > th {
25 | background-color: $hover-background;
26 | }
27 | }
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_text-emphasis.scss:
--------------------------------------------------------------------------------
1 | // Typography
2 |
3 | @mixin text-emphasis-variant($parent, $color) {
4 | #{$parent} {
5 | color: $color !important;
6 | }
7 | a#{$parent} {
8 | @include hover-focus {
9 | color: darken($color, 10%) !important;
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_text-hide.scss:
--------------------------------------------------------------------------------
1 | // CSS image replacement
2 | @mixin text-hide() {
3 | font: 0/0 a;
4 | color: transparent;
5 | text-shadow: none;
6 | background-color: transparent;
7 | border: 0;
8 | }
9 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_text-truncate.scss:
--------------------------------------------------------------------------------
1 | // Text truncate
2 | // Requires inline-block or block for proper styling
3 |
4 | @mixin text-truncate() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_transition.scss:
--------------------------------------------------------------------------------
1 | @mixin transition($transition...) {
2 | @if $enable-transitions {
3 | @if length($transition) == 0 {
4 | transition: $transition-base;
5 | } @else {
6 | transition: $transition;
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/mixins/_visibility.scss:
--------------------------------------------------------------------------------
1 | // Visibility
2 |
3 | @mixin invisible($visibility) {
4 | visibility: $visibility !important;
5 | }
6 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_align.scss:
--------------------------------------------------------------------------------
1 | .align-baseline { vertical-align: baseline !important; } // Browser default
2 | .align-top { vertical-align: top !important; }
3 | .align-middle { vertical-align: middle !important; }
4 | .align-bottom { vertical-align: bottom !important; }
5 | .align-text-bottom { vertical-align: text-bottom !important; }
6 | .align-text-top { vertical-align: text-top !important; }
7 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_background.scss:
--------------------------------------------------------------------------------
1 | @each $color, $value in $theme-colors {
2 | @include bg-variant('.bg-#{$color}', $value);
3 | }
4 |
5 | .bg-white { background-color: $white !important; }
6 | .bg-transparent { background-color: transparent !important; }
7 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_borders.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Border
3 | //
4 |
5 | .border { border: 1px solid $gray-200 !important; }
6 | .border-0 { border: 0 !important; }
7 | .border-top-0 { border-top: 0 !important; }
8 | .border-right-0 { border-right: 0 !important; }
9 | .border-bottom-0 { border-bottom: 0 !important; }
10 | .border-left-0 { border-left: 0 !important; }
11 |
12 | @each $color, $value in $theme-colors {
13 | .border-#{$color} {
14 | border-color: $value !important;
15 | }
16 | }
17 |
18 | .border-white {
19 | border-color: $white !important;
20 | }
21 |
22 | //
23 | // Border-radius
24 | //
25 |
26 | .rounded {
27 | border-radius: $border-radius !important;
28 | }
29 | .rounded-top {
30 | border-top-left-radius: $border-radius !important;
31 | border-top-right-radius: $border-radius !important;
32 | }
33 | .rounded-right {
34 | border-top-right-radius: $border-radius !important;
35 | border-bottom-right-radius: $border-radius !important;
36 | }
37 | .rounded-bottom {
38 | border-bottom-right-radius: $border-radius !important;
39 | border-bottom-left-radius: $border-radius !important;
40 | }
41 | .rounded-left {
42 | border-top-left-radius: $border-radius !important;
43 | border-bottom-left-radius: $border-radius !important;
44 | }
45 |
46 | .rounded-circle {
47 | border-radius: 50%;
48 | }
49 |
50 | .rounded-0 {
51 | border-radius: 0;
52 | }
53 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_clearfix.scss:
--------------------------------------------------------------------------------
1 | .clearfix {
2 | @include clearfix();
3 | }
4 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_display.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Utilities for common `display` values
3 | //
4 |
5 | @each $breakpoint in map-keys($grid-breakpoints) {
6 | @include media-breakpoint-up($breakpoint) {
7 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
8 |
9 | .d#{$infix}-none { display: none !important; }
10 | .d#{$infix}-inline { display: inline !important; }
11 | .d#{$infix}-inline-block { display: inline-block !important; }
12 | .d#{$infix}-block { display: block !important; }
13 | .d#{$infix}-table { display: table !important; }
14 | .d#{$infix}-table-cell { display: table-cell !important; }
15 | .d#{$infix}-flex { display: flex !important; }
16 | .d#{$infix}-inline-flex { display: inline-flex !important; }
17 | }
18 | }
19 |
20 |
21 | //
22 | // Utilities for toggling `display` in print
23 | //
24 |
25 | .d-print-block {
26 | display: none !important;
27 |
28 | @media print {
29 | display: block !important;
30 | }
31 | }
32 |
33 | .d-print-inline {
34 | display: none !important;
35 |
36 | @media print {
37 | display: inline !important;
38 | }
39 | }
40 |
41 | .d-print-inline-block {
42 | display: none !important;
43 |
44 | @media print {
45 | display: inline-block !important;
46 | }
47 | }
48 |
49 | .d-print-none {
50 | @media print {
51 | display: none !important;
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_embed.scss:
--------------------------------------------------------------------------------
1 | // Credit: Nicolas Gallagher and SUIT CSS.
2 |
3 | .embed-responsive {
4 | position: relative;
5 | display: block;
6 | width: 100%;
7 | padding: 0;
8 | overflow: hidden;
9 |
10 | &::before {
11 | display: block;
12 | content: "";
13 | }
14 |
15 | .embed-responsive-item,
16 | iframe,
17 | embed,
18 | object,
19 | video {
20 | position: absolute;
21 | top: 0;
22 | bottom: 0;
23 | left: 0;
24 | width: 100%;
25 | height: 100%;
26 | border: 0;
27 | }
28 | }
29 |
30 | .embed-responsive-21by9 {
31 | &::before {
32 | padding-top: percentage(9 / 21);
33 | }
34 | }
35 |
36 | .embed-responsive-16by9 {
37 | &::before {
38 | padding-top: percentage(9 / 16);
39 | }
40 | }
41 |
42 | .embed-responsive-4by3 {
43 | &::before {
44 | padding-top: percentage(3 / 4);
45 | }
46 | }
47 |
48 | .embed-responsive-1by1 {
49 | &::before {
50 | padding-top: percentage(1 / 1);
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_float.scss:
--------------------------------------------------------------------------------
1 | @each $breakpoint in map-keys($grid-breakpoints) {
2 | @include media-breakpoint-up($breakpoint) {
3 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
4 |
5 | .float#{$infix}-left { @include float-left; }
6 | .float#{$infix}-right { @include float-right; }
7 | .float#{$infix}-none { @include float-none; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_position.scss:
--------------------------------------------------------------------------------
1 | // Positioning
2 |
3 | .fixed-top {
4 | position: fixed;
5 | top: 0;
6 | right: 0;
7 | left: 0;
8 | z-index: $zindex-fixed;
9 | }
10 |
11 | .fixed-bottom {
12 | position: fixed;
13 | right: 0;
14 | bottom: 0;
15 | left: 0;
16 | z-index: $zindex-fixed;
17 | }
18 |
19 | .sticky-top {
20 | @supports (position: sticky) {
21 | position: sticky;
22 | top: 0;
23 | z-index: $zindex-sticky;
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_screenreaders.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Screenreaders
3 | //
4 |
5 | .sr-only {
6 | @include sr-only();
7 | }
8 |
9 | .sr-only-focusable {
10 | @include sr-only-focusable();
11 | }
12 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_sizing.scss:
--------------------------------------------------------------------------------
1 | // Width and height
2 |
3 | @each $prop, $abbrev in (width: w, height: h) {
4 | @each $size, $length in $sizes {
5 | .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
6 | }
7 | }
8 |
9 | .mw-100 { max-width: 100% !important; }
10 | .mh-100 { max-height: 100% !important; }
11 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_spacing.scss:
--------------------------------------------------------------------------------
1 | // Margin and Padding
2 |
3 | @each $breakpoint in map-keys($grid-breakpoints) {
4 | @include media-breakpoint-up($breakpoint) {
5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
6 |
7 | @each $prop, $abbrev in (margin: m, padding: p) {
8 | @each $size, $length in $spacers {
9 |
10 | .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
11 | .#{$abbrev}t#{$infix}-#{$size} { #{$prop}-top: $length !important; }
12 | .#{$abbrev}r#{$infix}-#{$size} { #{$prop}-right: $length !important; }
13 | .#{$abbrev}b#{$infix}-#{$size} { #{$prop}-bottom: $length !important; }
14 | .#{$abbrev}l#{$infix}-#{$size} { #{$prop}-left: $length !important; }
15 | .#{$abbrev}x#{$infix}-#{$size} {
16 | #{$prop}-right: $length !important;
17 | #{$prop}-left: $length !important;
18 | }
19 | .#{$abbrev}y#{$infix}-#{$size} {
20 | #{$prop}-top: $length !important;
21 | #{$prop}-bottom: $length !important;
22 | }
23 | }
24 | }
25 |
26 | // Some special margin utils
27 | .m#{$infix}-auto { margin: auto !important; }
28 | .mt#{$infix}-auto { margin-top: auto !important; }
29 | .mr#{$infix}-auto { margin-right: auto !important; }
30 | .mb#{$infix}-auto { margin-bottom: auto !important; }
31 | .ml#{$infix}-auto { margin-left: auto !important; }
32 | .mx#{$infix}-auto {
33 | margin-right: auto !important;
34 | margin-left: auto !important;
35 | }
36 | .my#{$infix}-auto {
37 | margin-top: auto !important;
38 | margin-bottom: auto !important;
39 | }
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_text.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Text
3 | //
4 |
5 | // Alignment
6 |
7 | .text-justify { text-align: justify !important; }
8 | .text-nowrap { white-space: nowrap !important; }
9 | .text-truncate { @include text-truncate; }
10 |
11 | // Responsive alignment
12 |
13 | @each $breakpoint in map-keys($grid-breakpoints) {
14 | @include media-breakpoint-up($breakpoint) {
15 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
16 |
17 | .text#{$infix}-left { text-align: left !important; }
18 | .text#{$infix}-right { text-align: right !important; }
19 | .text#{$infix}-center { text-align: center !important; }
20 | }
21 | }
22 |
23 | // Transformation
24 |
25 | .text-lowercase { text-transform: lowercase !important; }
26 | .text-uppercase { text-transform: uppercase !important; }
27 | .text-capitalize { text-transform: capitalize !important; }
28 |
29 | // Weight and italics
30 |
31 | .font-weight-normal { font-weight: $font-weight-normal; }
32 | .font-weight-bold { font-weight: $font-weight-bold; }
33 | .font-italic { font-style: italic; }
34 |
35 | // Contextual colors
36 |
37 | .text-white { color: #fff !important; }
38 |
39 | @each $color, $value in $theme-colors {
40 | @include text-emphasis-variant('.text-#{$color}', $value);
41 | }
42 |
43 | .text-muted { color: $text-muted !important; }
44 |
45 | // Misc
46 |
47 | .text-hide {
48 | @include text-hide();
49 | }
50 |
--------------------------------------------------------------------------------
/resources/assets/scss/bootstrap/utilities/_visibility.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Visibility utilities
3 | //
4 |
5 | .visible {
6 | @include invisible(visible);
7 | }
8 |
9 | .invisible {
10 | @include invisible(hidden);
11 | }
12 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_animate.scss:
--------------------------------------------------------------------------------
1 | // scss-lint:disable all
2 | @charset "UTF-8";
3 |
4 | .animated {
5 | -webkit-animation-duration: 1s;
6 | animation-duration: 1s;
7 | -webkit-animation-fill-mode: both;
8 | animation-fill-mode: both;
9 | }
10 |
11 | .animated.infinite {
12 | -webkit-animation-iteration-count: infinite;
13 | animation-iteration-count: infinite;
14 | }
15 |
16 | .animated.hinge {
17 | -webkit-animation-duration: 2s;
18 | animation-duration: 2s;
19 | }
20 |
21 | @-webkit-keyframes fadeIn {
22 | from {
23 | opacity: 0;
24 | }
25 |
26 | to {
27 | opacity: 1;
28 | }
29 | }
30 |
31 | @keyframes fadeIn {
32 | from {
33 | opacity: 0;
34 | }
35 |
36 | to {
37 | opacity: 1;
38 | }
39 | }
40 |
41 | .fadeIn {
42 | -webkit-animation-name: fadeIn;
43 | animation-name: fadeIn;
44 | }
45 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_aside.scss:
--------------------------------------------------------------------------------
1 | .aside-menu {
2 | z-index: $zindex-sticky - 1;
3 | width: $aside-menu-width;
4 | color: $aside-menu-color;
5 | background: $aside-menu-bg;
6 | @include borders($aside-menu-borders);
7 |
8 | .nav-tabs {
9 | border-color: $border-color;
10 | .nav-link {
11 | padding: $aside-menu-nav-padding-y $aside-menu-nav-padding-x;
12 | color: $body-color;
13 | border-top: 0;
14 | &.active {
15 | color: theme-color("primary");
16 | border-right-color: $border-color;
17 | border-left-color: $border-color;
18 | }
19 | }
20 | .nav-item:first-child {
21 | .nav-link {
22 | border-left: 0;
23 | }
24 | }
25 | }
26 |
27 | .tab-content {
28 | position: relative;
29 | overflow-x: hidden;
30 | overflow-y: auto;
31 | border: 0;
32 | border-top: 1px solid $border-color;
33 | -ms-overflow-style: -ms-autohiding-scrollbar;
34 |
35 | &::-webkit-scrollbar {
36 | width: 10px;
37 | margin-left: -10px;
38 | -webkit-appearance: none;
39 | }
40 |
41 | // &::-webkit-scrollbar-button { }
42 |
43 | &::-webkit-scrollbar-track {
44 | background-color: lighten($aside-menu-bg, 5%);
45 | border-right: 1px solid darken($aside-menu-bg, 5%);
46 | border-left: 1px solid darken($aside-menu-bg, 5%);
47 | }
48 |
49 | // &::-webkit-scrollbar-track-piece { }
50 |
51 | &::-webkit-scrollbar-thumb {
52 | height: 50px;
53 | background-color: darken($aside-menu-bg, 10%);
54 | background-clip: content-box;
55 | border-color: transparent;
56 | border-style: solid;
57 | border-width: 1px 2px;
58 | }
59 |
60 | .tab-pane {
61 | padding: 0;
62 | }
63 | }
64 | }
65 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_avatars.scss:
--------------------------------------------------------------------------------
1 | .img-avatar {
2 | border-radius: 50em;
3 | }
4 |
5 | .avatar {
6 | $width: 36px;
7 | $status-width: 10px;
8 | @include avatar($width,$status-width);
9 | }
10 |
11 | .avatar.avatar-xs {
12 | $width: 20px;
13 | $status-width: 8px;
14 | @include avatar($width,$status-width);
15 | }
16 |
17 | .avatar.avatar-sm {
18 | $width: 24px;
19 | $status-width: 8px;
20 | @include avatar($width,$status-width);
21 | }
22 |
23 | .avatar.avatar-lg {
24 | $width: 72px;
25 | $status-width: 12px;
26 | @include avatar($width,$status-width);
27 | }
28 |
29 | .avatars-stack {
30 | .avatar.avatar-xs {
31 | margin-right: -10px;
32 | }
33 |
34 | // .avatar.avatar-sm {
35 | //
36 | // }
37 |
38 | .avatar {
39 | margin-right: -15px;
40 | transition: margin-left $layout-transition-speed, margin-right $layout-transition-speed;
41 |
42 | &:hover {
43 | margin-right: 0 !important;
44 | }
45 | }
46 |
47 | // .avatar.avatar-lg {
48 | //
49 | // }
50 |
51 | }
52 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_badge.scss:
--------------------------------------------------------------------------------
1 | .badge-pill {
2 | border-radius: $badge-pill-border-radius;
3 | }
4 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_breadcrumb-menu.scss:
--------------------------------------------------------------------------------
1 | .breadcrumb-menu {
2 | position: absolute;
3 | top: 0;
4 | right: $breadcrumb-padding-x;
5 |
6 | &::before {
7 | display: none;
8 | }
9 |
10 | .btn {
11 | padding-top: $breadcrumb-padding-y;
12 | padding-bottom: $breadcrumb-padding-y;
13 | }
14 |
15 | .btn {
16 | color: $text-muted;
17 |
18 | &:hover, &.active {
19 | color: $body-color;
20 | background: transparent;
21 | }
22 | }
23 |
24 | .open {
25 | .btn {
26 | color: $body-color;
27 | background: transparent;
28 | }
29 | }
30 |
31 | .dropdown-menu {
32 | min-width: 180px;
33 | line-height: $line-height-base;
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_breadcrumb.scss:
--------------------------------------------------------------------------------
1 | .breadcrumb {
2 | position: relative;
3 | margin-bottom: 1.5 * $spacer;
4 |
5 | @include borders($breadcrumb-borders);
6 | }
7 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_callout.scss:
--------------------------------------------------------------------------------
1 | .callout {
2 | position: relative;
3 | padding: 0 $spacer;
4 | margin: $spacer 0;
5 | border: 0 solid $border-color;
6 | border-left-width: .25rem;
7 |
8 | @if $enable-rounded {
9 | border-radius: .25rem;
10 | }
11 |
12 | .chart-wrapper {
13 | position: absolute;
14 | top: 18px;
15 | left: 45%;
16 | float: right;
17 | width: 100px;
18 | }
19 | }
20 |
21 | .callout-bordered {
22 | border: 1px solid $border-color;
23 | border-left-width: .25rem;
24 | }
25 | .callout code {
26 | border-radius: .25rem;
27 | }
28 | .callout h4 {
29 | margin-top: 0;
30 | margin-bottom: .25rem;
31 | }
32 | .callout p:last-child {
33 | margin-bottom: 0;
34 | }
35 | .callout + .callout {
36 | margin-top: - .25rem;
37 | }
38 |
39 | .callout-default {
40 | border-left-color: $text-muted;
41 |
42 | h4 {
43 | color: $text-muted;
44 | }
45 | }
46 |
47 | @each $color, $value in $theme-colors {
48 | &.callout-#{$color} {
49 | border-left-color: $value;
50 |
51 | h4 {
52 | color: $value;
53 | }
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_charts.scss:
--------------------------------------------------------------------------------
1 | .chart-wrapper {
2 | canvas {
3 | width: 100% !important;
4 | }
5 | }
6 | // scss-lint:disable QualifyingElement
7 | base-chart.chart {
8 | display: block !important;
9 | }
10 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_dropdown.scss:
--------------------------------------------------------------------------------
1 | // Links, buttons, and more within the dropdown menu
2 | .dropdown-item {
3 | position: relative;
4 | padding: 10px 20px;
5 | border-bottom: 1px solid $dropdown-border-color;
6 |
7 | &:last-child {
8 | border-bottom: 0;
9 | }
10 |
11 | i {
12 | display: inline-block;
13 | width: 20px;
14 | margin-right: 10px;
15 | margin-left: -10px;
16 | color: $dropdown-border-color;
17 | text-align: center;
18 | }
19 |
20 | .badge {
21 | position: absolute;
22 | right: 10px;
23 | margin-top: 2px;
24 | }
25 | }
26 |
27 | // Dropdown section headers
28 | .dropdown-header {
29 | padding: 8px 20px;
30 | background: $dropdown-divider-bg;
31 | border-bottom: 1px solid $dropdown-border-color;
32 |
33 | .btn {
34 | margin-top: -7px;
35 | color: $dropdown-header-color;
36 |
37 | &:hover {
38 | color: $body-color;
39 | }
40 |
41 | &.pull-right {
42 | margin-right: -20px;
43 | }
44 | }
45 | }
46 |
47 | .dropdown-menu-lg {
48 | width: 250px;
49 | }
50 | .app-header {
51 | .navbar-nav {
52 | .dropdown-menu {
53 | position: absolute;
54 | }
55 | // Menu positioning
56 | //
57 | // Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
58 | // menu with the parent.
59 | .dropdown-menu-right {
60 | right: 0;
61 | left: auto; // Reset the default from `.dropdown-menu`
62 | }
63 |
64 | .dropdown-menu-left {
65 | right: auto;
66 | left: 0;
67 | }
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_footer.scss:
--------------------------------------------------------------------------------
1 | .app-footer {
2 | min-height: $footer-height;
3 | padding: 0 $spacer;
4 | line-height: $footer-height;
5 | color: $footer-color;
6 | background: $footer-bg;
7 | @include borders($footer-borders);
8 | }
9 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_grid.scss:
--------------------------------------------------------------------------------
1 | .row.row-equal {
2 | padding-right: ($grid-gutter-width / 4);
3 | padding-left: ($grid-gutter-width / 4);
4 | margin-right: ($grid-gutter-width / -2);
5 | margin-left: ($grid-gutter-width / -2);
6 |
7 | [class*="col-"] {
8 | padding-right: ($grid-gutter-width / 4);
9 | padding-left: ($grid-gutter-width / 4);
10 | }
11 | }
12 |
13 | .main .container-fluid {
14 | padding: 0 30px;
15 | }
16 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_input-group.scss:
--------------------------------------------------------------------------------
1 | .input-group-addon,
2 | .input-group-btn {
3 | min-width: 40px;
4 | white-space: nowrap;
5 | vertical-align: middle; // Match the inputs
6 | }
7 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_mobile.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Braunson/laravel-coreui-vue/811e2bd5fad5c99ea1b1ba422ddf61071806445f/resources/assets/scss/core/_mobile.scss
--------------------------------------------------------------------------------
/resources/assets/scss/core/_modal.scss:
--------------------------------------------------------------------------------
1 | @each $color, $value in $theme-colors {
2 | .modal-#{$color} {
3 |
4 | .modal-content {
5 | border-color: $value;
6 | }
7 |
8 | .modal-header {
9 | color: #fff;
10 | background-color: $value;
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_nav.scss:
--------------------------------------------------------------------------------
1 | .nav-tabs {
2 | .nav-link {
3 | color: $gray-600;
4 | &.active {
5 | color: $gray-800;
6 | background: #fff;
7 | border-color: $border-color;
8 | border-bottom-color: #fff;
9 | &:focus {
10 | background: #fff;
11 | border-color: $border-color;
12 | border-bottom-color: #fff;
13 | }
14 | }
15 | }
16 | }
17 |
18 | .tab-content {
19 | margin-top: -1px;
20 | background: #fff;
21 | border: 1px solid $border-color;
22 | .tab-pane {
23 | padding: $spacer;
24 | }
25 | }
26 |
27 | .card-block {
28 | .tab-content {
29 | margin-top: 0;
30 | border: 0;
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_others.scss:
--------------------------------------------------------------------------------
1 | // scss-lint:disable QualifyingElement
2 | hr.transparent {
3 | border-top: 1px solid transparent;
4 | }
5 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_progress.scss:
--------------------------------------------------------------------------------
1 | .progress-xs {
2 | height: 4px;
3 | }
4 |
5 | .progress-sm {
6 | height: 8px;
7 | }
8 |
9 | // White progress bar
10 | .progress-white {
11 | background-color: rgba(255,255,255,.2) !important;
12 | .progress-bar {
13 | background-color: #fff;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_tables.scss:
--------------------------------------------------------------------------------
1 | .table-outline {
2 | border: 1px solid $table-border-color;
3 |
4 | td {
5 | vertical-align: middle;
6 | }
7 | }
8 |
9 | .table-align-middle {
10 |
11 | td {
12 | vertical-align: middle;
13 | }
14 | }
15 |
16 | .table-clear {
17 | td {
18 | border: 0;
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_temp.scss:
--------------------------------------------------------------------------------
1 | .pagination-datatables, .pagination {
2 | li {
3 | @extend .page-item;
4 |
5 | a {
6 | @extend .page-link;
7 | }
8 | }
9 | }
10 |
11 | .label-pill {
12 | border-radius: 1rem !important;
13 | }
14 |
15 | // temp fix for Vue-Strap
16 |
17 | // Open state for the dropdown
18 | .open, .show {
19 | // Show the menu
20 | > .dropdown-menu {
21 | display: block;
22 | }
23 |
24 | // Remove the outline when :focus is triggered
25 | > a {
26 | outline: 0;
27 | }
28 | }
29 |
30 | //
31 | .modal-open .modal {
32 | display: block;
33 | }
34 |
35 | // navbar dropdown fix
36 | .navbar .dropdown-toggle {
37 | @extend .nav-link;
38 |
39 | .img-avatar {
40 | height: $navbar-height - 20px;
41 | margin: 0 10px;
42 | }
43 | }
44 |
45 | .card-block {
46 | @extend .card-body;
47 | }
48 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_typography.scss:
--------------------------------------------------------------------------------
1 | body {
2 | -moz-osx-font-smoothing: grayscale;
3 | -webkit-font-smoothing: antialiased;
4 | }
5 |
6 | .font-xs {
7 | font-size: .75rem !important;
8 | }
9 |
10 | .font-sm {
11 | font-size: .85rem !important;
12 | }
13 |
14 | .font-lg {
15 | font-size: 1rem !important;
16 | }
17 |
18 | .font-xl {
19 | font-size: 1.25rem !important;
20 | }
21 |
22 | .font-2xl {
23 | font-size: 1.5rem !important;
24 | }
25 |
26 | .font-3xl {
27 | font-size: 1.75rem !important;
28 | }
29 |
30 | .font-4xl {
31 | font-size: 2rem !important;
32 | }
33 |
34 | .font-5xl {
35 | font-size: 2.5rem !important;
36 | }
37 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/_utilities.scss:
--------------------------------------------------------------------------------
1 | @import "utilities/background";
2 | @import "utilities/borders";
3 | @import "utilities/display";
4 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/core.scss:
--------------------------------------------------------------------------------
1 | // Import core styles
2 | @import "variables";
3 | @import "mixins";
4 |
5 | // Additional typography
6 | @import "typography";
7 |
8 | // Animations
9 | @import "animate";
10 |
11 | // Components
12 | @import "aside";
13 | @import "avatars";
14 | @import "badge";
15 | @import "breadcrumb-menu";
16 | @import "breadcrumb";
17 | @import "buttons";
18 | @import "callout";
19 | @import "card";
20 | @import "charts";
21 | @import "dropdown";
22 | @import "footer";
23 | @import "grid";
24 | @import "input-group";
25 | @import "loading";
26 | @import "modal";
27 | @import "nav";
28 | @import "navbar";
29 | @import "progress";
30 | @import "sidebar";
31 | @import "switches";
32 | @import "tables";
33 | @import "widgets";
34 |
35 | // Layout Options
36 | @import "layout";
37 |
38 | @import "others";
39 |
40 | // Utility classes
41 | @import "utilities";
42 |
43 | // Temporary fixes
44 | @import "temp";
45 |
46 | // Right-to-left
47 | @import "rtl";
48 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/utilities/_background.scss:
--------------------------------------------------------------------------------
1 | .bg-primary,
2 | .bg-success,
3 | .bg-info,
4 | .bg-warning,
5 | .bg-danger,
6 | .bg-inverse {
7 | color: #fff;
8 | }
9 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/utilities/_borders.scss:
--------------------------------------------------------------------------------
1 | //border
2 | @each $prop, $abbrev in (border: b) {
3 | @each $size in (0,1,2) {
4 | @if $size == 0 {
5 | .#{$abbrev}-a-#{$size} { #{$prop}: 0 !important; } // a = All sides
6 | .#{$abbrev}-t-#{$size} { #{$prop}-top: 0 !important; }
7 | .#{$abbrev}-r-#{$size} { #{$prop}-right: 0 !important; }
8 | .#{$abbrev}-b-#{$size} { #{$prop}-bottom: 0 !important; }
9 | .#{$abbrev}-l-#{$size} { #{$prop}-left: 0 !important; }
10 | } @else {
11 | .#{$abbrev}-a-#{$size} { #{$prop}: $size * $border-width solid $border-color !important; } // a = All sides
12 | .#{$abbrev}-t-#{$size} { #{$prop}-top: $size * $border-width solid $border-color !important; }
13 | .#{$abbrev}-r-#{$size} { #{$prop}-right: $size * $border-width solid $border-color !important; }
14 | .#{$abbrev}-b-#{$size} { #{$prop}-bottom: $size * $border-width solid $border-color !important; }
15 | .#{$abbrev}-l-#{$size} { #{$prop}-left: $size * $border-width solid $border-color !important; }
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/resources/assets/scss/core/utilities/_display.scss:
--------------------------------------------------------------------------------
1 | //
2 | // Utilities for common `display` values
3 | //
4 |
5 | @each $breakpoint in map-keys($grid-breakpoints) {
6 | @include media-breakpoint-down($breakpoint) {
7 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
8 |
9 | .d#{$infix}-down-none { display: none !important; }
10 | // .d#{$infix}-inline { display: inline !important; }
11 | // .d#{$infix}-inline-block { display: inline-block !important; }
12 | // .d#{$infix}-block { display: block !important; }
13 | // .d#{$infix}-table { display: table !important; }
14 | // .d#{$infix}-table-cell { display: table-cell !important; }
15 | // .d#{$infix}-flex { display: flex !important; }
16 | // .d#{$infix}-inline-flex { display: inline-flex !important; }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/resources/assets/scss/style.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * CoreUI - Open Source Bootstrap Admin Template
3 | * @version v1.0.0-alpha.6
4 | * @link http://coreui.io
5 | * Copyright (c) 2017 creativeLabs Łukasz Holeczek
6 | * @license MIT
7 | */
8 | // Override Boostrap variables
9 | @import "bootstrap-variables";
10 |
11 | // Import Bootstrap source files
12 | @import "bootstrap/bootstrap";
13 |
14 | // If you want you can import bootstrap scss files directly from node_modules or bower_components.
15 | // To do this please remove @import "bootstrap/bootstrap"; and uncomment proper line.
16 |
17 | // Import Bootstrap source files from node_modules
18 | // @import "node_modules/bootstrap/scss/bootstrap";
19 |
20 | // Import Bootstrap source files from bower_components
21 | // @import "bower_components/bootstrap/scss/bootstrap";
22 |
23 | // Import vendors styles
24 | @import "vendors/vendors";
25 |
26 | // Override core variables
27 | @import "core-variables";
28 |
29 | // Import core styles
30 | @import "core/core";
31 |
32 | // Custom styles
33 | @import "custom";
34 |
--------------------------------------------------------------------------------
/resources/assets/scss/vendors/_vendors.scss:
--------------------------------------------------------------------------------
1 | @import "chart.js/chart";
2 |
--------------------------------------------------------------------------------
/resources/assets/scss/vendors/chart.js/chart.scss:
--------------------------------------------------------------------------------
1 | .chart-legend,
2 | .bar-legend,
3 | .line-legend,
4 | .pie-legend,
5 | .radar-legend,
6 | .polararea-legend,
7 | .doughnut-legend {
8 | list-style-type: none;
9 | margin-top: 5px;
10 | text-align: center;
11 | -webkit-padding-start: 0;
12 | -moz-padding-start: 0;
13 | padding-left: 0;
14 | }
15 | .chart-legend li,
16 | .bar-legend li,
17 | .line-legend li,
18 | .pie-legend li,
19 | .radar-legend li,
20 | .polararea-legend li,
21 | .doughnut-legend li {
22 | display: inline-block;
23 | white-space: nowrap;
24 | position: relative;
25 | margin-bottom: 4px;
26 | @include border-radius($border-radius);
27 | padding: 2px 8px 2px 28px;
28 | font-size: smaller;
29 | cursor: default;
30 | }
31 | .chart-legend li span,
32 | .bar-legend li span,
33 | .line-legend li span,
34 | .pie-legend li span,
35 | .radar-legend li span,
36 | .polararea-legend li span,
37 | .doughnut-legend li span {
38 | display: block;
39 | position: absolute;
40 | left: 0;
41 | top: 0;
42 | width: 20px;
43 | height: 20px;
44 | @include border-radius($border-radius);
45 | }
46 |
--------------------------------------------------------------------------------
/resources/lang/en/auth.php:
--------------------------------------------------------------------------------
1 | 'These credentials do not match our records.',
17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
1 | '« Previous',
17 | 'next' => 'Next »',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/resources/lang/en/passwords.php:
--------------------------------------------------------------------------------
1 | 'Passwords must be at least six characters and match the confirmation.',
17 | 'reset' => 'Your password has been reset!',
18 | 'sent' => 'We have e-mailed your password reset link!',
19 | 'token' => 'This password reset token is invalid.',
20 | 'user' => "We can't find a user with that e-mail address.",
21 |
22 | ];
23 |
--------------------------------------------------------------------------------
/resources/views/welcome.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Laravel - CoreUI Example
10 |
11 |
16 |
17 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/routes/api.php:
--------------------------------------------------------------------------------
1 | get('/user', function (Request $request) {
17 | return $request->user();
18 | });
19 |
--------------------------------------------------------------------------------
/routes/channels.php:
--------------------------------------------------------------------------------
1 | id === (int) $id;
16 | });
17 |
--------------------------------------------------------------------------------
/routes/console.php:
--------------------------------------------------------------------------------
1 | comment(Inspiring::quote());
18 | })->describe('Display an inspiring quote');
19 |
--------------------------------------------------------------------------------
/routes/web.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 |
10 | $uri = urldecode(
11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
12 | );
13 |
14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the
15 | // built-in PHP web server. This provides a convenient way to test a Laravel
16 | // application without having installed a "real" web server software here.
17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
18 | return false;
19 | }
20 |
21 | require_once __DIR__.'/public/index.php';
22 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 | routes.php
3 | schedule-*
4 | compiled.php
5 | services.json
6 | events.scanned.php
7 | routes.scanned.php
8 | down
9 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/tests/CreatesApplication.php:
--------------------------------------------------------------------------------
1 | make(Kernel::class)->bootstrap();
20 |
21 | Hash::driver('bcrypt')->setRounds(4);
22 |
23 | return $app;
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/tests/Feature/ExampleTest.php:
--------------------------------------------------------------------------------
1 | get('/');
18 |
19 | $response->assertStatus(200);
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/webpack.mix.js:
--------------------------------------------------------------------------------
1 | let mix = require('laravel-mix');
2 | var coreui_vendor = 'vendor/mrholek/CoreUI-Free-Bootstrap-Admin-Template/Vue_Full_Project';
3 |
4 | /*
5 | |--------------------------------------------------------------------------
6 | | Mix Asset Management
7 | |--------------------------------------------------------------------------
8 | |
9 | | Mix provides a clean, fluent API for defining some Webpack build steps
10 | | for your Laravel application. By default, we are compiling the Sass
11 | | file for the application as well as bundling up all the JS files.
12 | |
13 | */
14 |
15 | // Copy over the CoreUI Assets initially
16 | // mix.copyDirectory(coreui_vendor + '/static/img', 'public/static/img')
17 | // .copy(coreui_vendor + '/static/img/logo.png', 'resources/assets/img/logo.png')
18 | // .copyDirectory(coreui_vendor + '/scss', 'resources/assets/scss')
19 | // .copyDirectory(coreui_vendor + '/src/components', 'resources/assets/js/components')
20 | // .copyDirectory(coreui_vendor + '/src/containers', 'resources/assets/js/containers')
21 | // .copyDirectory(coreui_vendor + '/src/router', 'resources/assets/js/router')
22 | // .copyDirectory(coreui_vendor + '/src/views', 'resources/assets/js/views')
23 | // .copy(coreui_vendor + '/src/_nav.js', 'resources/assets/js/_nav.js')
24 | // .copy(coreui_vendor + '/src/App.vue', 'resources/assets/js/App.vue', false);
25 |
26 | mix.js('resources/assets/js/app.js', 'public/js');
27 |
--------------------------------------------------------------------------------