├── .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 | 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 | 8 | 9 | 34 | -------------------------------------------------------------------------------- /resources/assets/js/components/Callout.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 27 | -------------------------------------------------------------------------------- /resources/assets/js/components/Footer.vue: -------------------------------------------------------------------------------- 1 | 7 | 12 | -------------------------------------------------------------------------------- /resources/assets/js/components/SidebarNavDropdown.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 34 | -------------------------------------------------------------------------------- /resources/assets/js/components/SidebarNavLink.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 30 | -------------------------------------------------------------------------------- /resources/assets/js/components/SidebarNavTitle.vue: -------------------------------------------------------------------------------- 1 | 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 | 17 | 18 | 46 | -------------------------------------------------------------------------------- /resources/assets/js/views/Charts.vue: -------------------------------------------------------------------------------- 1 | 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 | 23 | 24 | 29 | -------------------------------------------------------------------------------- /resources/assets/js/views/pages/Page500.vue: -------------------------------------------------------------------------------- 1 | 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 `