├── public ├── favicon.ico ├── robots.txt ├── volt │ ├── html&css │ │ ├── vendor │ │ │ ├── @popperjs │ │ │ │ └── core │ │ │ │ │ └── dist │ │ │ │ │ ├── esm │ │ │ │ │ ├── types.js │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── getAltAxis.js │ │ │ │ │ │ ├── math.js │ │ │ │ │ │ ├── getAltLen.js │ │ │ │ │ │ ├── getVariation.js │ │ │ │ │ │ ├── getBasePlacement.js │ │ │ │ │ │ ├── getMainAxisFromPlacement.js │ │ │ │ │ │ ├── getFreshSideObject.js │ │ │ │ │ │ ├── expandToHashMap.js │ │ │ │ │ │ ├── mergePaddingObject.js │ │ │ │ │ │ ├── rectToClientRect.js │ │ │ │ │ │ ├── getOppositeVariationPlacement.js │ │ │ │ │ │ ├── within.js │ │ │ │ │ │ ├── uniqueBy.js │ │ │ │ │ │ ├── getOppositePlacement.js │ │ │ │ │ │ ├── format.js │ │ │ │ │ │ ├── debounce.js │ │ │ │ │ │ └── mergeByName.js │ │ │ │ │ ├── dom-utils │ │ │ │ │ │ ├── getNodeName.js │ │ │ │ │ │ ├── getComputedStyle.js │ │ │ │ │ │ ├── getHTMLElementScroll.js │ │ │ │ │ │ ├── isTableElement.js │ │ │ │ │ │ ├── getWindowScroll.js │ │ │ │ │ │ ├── getWindow.js │ │ │ │ │ │ ├── getDocumentElement.js │ │ │ │ │ │ ├── getNodeScroll.js │ │ │ │ │ │ ├── isScrollParent.js │ │ │ │ │ │ ├── getScrollParent.js │ │ │ │ │ │ ├── instanceOf.js │ │ │ │ │ │ ├── contains.js │ │ │ │ │ │ ├── getWindowScrollBarX.js │ │ │ │ │ │ ├── getParentNode.js │ │ │ │ │ │ └── getLayoutRect.js │ │ │ │ │ ├── popper-base.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── modifiers │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── popperOffsets.js │ │ │ │ │ └── popper-lite.js │ │ │ │ │ ├── cjs │ │ │ │ │ ├── enums.js.flow │ │ │ │ │ ├── popper.js.flow │ │ │ │ │ ├── popper-base.js.flow │ │ │ │ │ └── popper-lite.js.flow │ │ │ │ │ └── umd │ │ │ │ │ ├── enums.min.js.flow │ │ │ │ │ ├── popper.min.js.flow │ │ │ │ │ ├── popper-base.min.js.flow │ │ │ │ │ └── popper-lite.min.js.flow │ │ │ ├── .DS_Store │ │ │ ├── sass │ │ │ │ ├── sass.default.dart.js │ │ │ │ └── sass.js │ │ │ ├── waypoints │ │ │ │ └── testem.json │ │ │ ├── vanillajs-datepicker │ │ │ │ └── dist │ │ │ │ │ └── js │ │ │ │ │ └── locales │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── en-IE.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── en-NZ.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── en-ZA.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── uz-cyrl.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── en-CA.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── en-GB.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── en-AU.js │ │ │ │ │ ├── nl-BE.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ ├── ar-DZ.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── it-CH.js │ │ │ │ │ └── fr-CH.js │ │ │ └── chartist-plugin-tooltips │ │ │ │ └── dist │ │ │ │ └── chartist-plugin-tooltip.css │ │ ├── .DS_Store │ │ ├── pages │ │ │ └── .DS_Store │ │ └── assets │ │ │ ├── .DS_Store │ │ │ └── img │ │ │ ├── pages │ │ │ ├── 404.jpg │ │ │ ├── 500.jpg │ │ │ ├── lock.jpg │ │ │ ├── sign-in.jpg │ │ │ ├── sign-up.jpg │ │ │ ├── overview.jpg │ │ │ ├── settings.jpg │ │ │ ├── transactions.jpg │ │ │ ├── reset-password.jpg │ │ │ ├── forgot-password.jpg │ │ │ └── mockup-presentation.png │ │ │ ├── profile-cover.jpg │ │ │ ├── favicon │ │ │ ├── favicon.ico │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── mstile-150x150.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── browserconfig.xml │ │ │ ├── site.webmanifest │ │ │ └── manifest.json │ │ │ ├── themesberg-mockup.jpg │ │ │ ├── mockup-presentation.png │ │ │ ├── mockup-map-presentation.png │ │ │ ├── team │ │ │ ├── profile-picture-1.jpg │ │ │ ├── profile-picture-2.jpg │ │ │ ├── profile-picture-3.jpg │ │ │ ├── profile-picture-4.jpg │ │ │ ├── profile-picture-5.jpg │ │ │ └── profile-picture-6.jpg │ │ │ ├── mockup-calendar-presentation.png │ │ │ ├── mockup-kanban-presentation.png │ │ │ ├── marker.svg │ │ │ ├── icons │ │ │ └── google_analytics.svg │ │ │ ├── brand │ │ │ ├── light.svg │ │ │ └── dark.svg │ │ │ ├── technologies │ │ │ └── vuejs-logo.svg │ │ │ └── flags │ │ │ ├── japan.svg │ │ │ ├── indonesia.svg │ │ │ ├── ukraine.svg │ │ │ ├── republic-of-poland.svg │ │ │ ├── vietnam.svg │ │ │ ├── switzerland.svg │ │ │ ├── france.svg │ │ │ ├── ireland.svg │ │ │ ├── italy.svg │ │ │ ├── luxembourg.svg │ │ │ ├── netherlands.svg │ │ │ ├── latvia.svg │ │ │ ├── nigeria.svg │ │ │ ├── peru.svg │ │ │ ├── bahrain.svg │ │ │ ├── colombia.svg │ │ │ └── czech-republic.svg │ ├── src │ │ ├── scss │ │ │ ├── custom │ │ │ │ └── _variables.scss │ │ │ ├── .DS_Store │ │ │ └── volt │ │ │ │ ├── _forms.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _vendor.scss │ │ │ │ ├── components │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _datepicker.scss │ │ │ │ ├── _shapes.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _body.scss │ │ │ │ ├── _timelines.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _close.scss │ │ │ │ └── _tooltip.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── forms │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _form-check.scss │ │ │ │ ├── _form-control.scss │ │ │ │ └── _form-select.scss │ │ │ │ ├── mixins │ │ │ │ ├── _transform.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _icon.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ └── _popover.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── layout │ │ │ │ └── _sidebar.scss │ │ │ │ └── _components.scss │ │ ├── .DS_Store │ │ ├── pages │ │ │ ├── .DS_Store │ │ │ └── examples │ │ │ │ └── .DS_Store │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ └── img │ │ │ │ ├── pages │ │ │ │ ├── 404.jpg │ │ │ │ ├── 500.jpg │ │ │ │ ├── lock.jpg │ │ │ │ ├── sign-in.jpg │ │ │ │ ├── sign-up.jpg │ │ │ │ ├── overview.jpg │ │ │ │ ├── settings.jpg │ │ │ │ ├── transactions.jpg │ │ │ │ ├── reset-password.jpg │ │ │ │ ├── forgot-password.jpg │ │ │ │ └── mockup-presentation.png │ │ │ │ ├── profile-cover.jpg │ │ │ │ ├── favicon │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ ├── browserconfig.xml │ │ │ │ ├── site.webmanifest │ │ │ │ └── manifest.json │ │ │ │ ├── themesberg-mockup.jpg │ │ │ │ ├── mockup-presentation.png │ │ │ │ ├── mockup-map-presentation.png │ │ │ │ ├── team │ │ │ │ ├── profile-picture-1.jpg │ │ │ │ ├── profile-picture-2.jpg │ │ │ │ ├── profile-picture-3.jpg │ │ │ │ ├── profile-picture-4.jpg │ │ │ │ ├── profile-picture-5.jpg │ │ │ │ └── profile-picture-6.jpg │ │ │ │ ├── mockup-calendar-presentation.png │ │ │ │ ├── mockup-kanban-presentation.png │ │ │ │ ├── marker.svg │ │ │ │ ├── icons │ │ │ │ └── google_analytics.svg │ │ │ │ ├── brand │ │ │ │ ├── light.svg │ │ │ │ └── dark.svg │ │ │ │ ├── technologies │ │ │ │ └── vuejs-logo.svg │ │ │ │ └── flags │ │ │ │ ├── japan.svg │ │ │ │ ├── indonesia.svg │ │ │ │ ├── ukraine.svg │ │ │ │ ├── republic-of-poland.svg │ │ │ │ ├── vietnam.svg │ │ │ │ ├── switzerland.svg │ │ │ │ ├── france.svg │ │ │ │ ├── ireland.svg │ │ │ │ ├── italy.svg │ │ │ │ ├── luxembourg.svg │ │ │ │ ├── netherlands.svg │ │ │ │ ├── latvia.svg │ │ │ │ ├── nigeria.svg │ │ │ │ ├── peru.svg │ │ │ │ ├── bahrain.svg │ │ │ │ ├── colombia.svg │ │ │ │ └── czech-republic.svg │ │ └── partials │ │ │ ├── _analytics_body.html │ │ │ ├── dashboard │ │ │ └── _nav.html │ │ │ └── _analytics.html │ └── LICENSE.md ├── iconMarkers │ └── marker.png ├── upload │ └── spots │ │ ├── BhOPt4nIsfx1DCBhbXTJ51eYwkNQEkH1wVb0ACJR.png │ │ └── b9OSWUcvJrVHeGzR8bd38y7bpL1AYU8c9fodsuTp.jpg └── .htaccess ├── resources ├── css │ └── app.css ├── js │ └── app.js └── sass │ ├── _variables.scss │ └── app.scss ├── database ├── .gitignore ├── seeders │ └── DatabaseSeeder.php └── migrations │ ├── 2023_07_10_081912_create_centre__points_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2023_07_10_081935_create_spots_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ └── 2019_12_14_000001_create_personal_access_tokens_table.php ├── bootstrap └── cache │ └── .gitignore ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── .gitattributes ├── app ├── Models │ ├── Centre_Point.php │ └── Spot.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ └── ResetPasswordController.php │ │ └── Backend │ │ │ └── DataController.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── Authenticate.php │ │ ├── ValidateSignature.php │ │ ├── TrustProxies.php │ │ └── RedirectIfAuthenticated.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ └── EventServiceProvider.php └── Console │ └── Kernel.php ├── .gitignore ├── .editorconfig ├── vite.config.js ├── package.json ├── routes ├── channels.php ├── api.php └── console.php └── config └── cors.php /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/volt/src/scss/custom/_variables.scss: -------------------------------------------------------------------------------- 1 | // $primary: blue; 2 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/volt/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/.DS_Store -------------------------------------------------------------------------------- /public/iconMarkers/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/iconMarkers/marker.png -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/cjs/enums.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/enums.js' 4 | -------------------------------------------------------------------------------- /public/volt/html&css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/.DS_Store -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/cjs/popper.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper.js' 4 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/umd/enums.min.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/enums.js' 4 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/umd/popper.min.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper.js' 4 | -------------------------------------------------------------------------------- /public/volt/src/pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/pages/.DS_Store -------------------------------------------------------------------------------- /public/volt/src/scss/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/scss/.DS_Store -------------------------------------------------------------------------------- /public/volt/src/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/.DS_Store -------------------------------------------------------------------------------- /public/volt/html&css/pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/pages/.DS_Store -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/cjs/popper-base.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper-base.js' 4 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/cjs/popper-lite.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper-lite.js' 4 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/umd/popper-base.min.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper-base.js' 4 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/umd/popper-lite.min.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | export * from '../../lib/popper-lite.js' 4 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/.DS_Store -------------------------------------------------------------------------------- /public/volt/html&css/vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/vendor/.DS_Store -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/404.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/500.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/lock.jpg -------------------------------------------------------------------------------- /public/volt/src/pages/examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/pages/examples/.DS_Store -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/sign-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/sign-in.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/sign-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/sign-up.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/profile-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/profile-cover.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/404.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/500.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/lock.jpg -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/getAltAxis.js: -------------------------------------------------------------------------------- 1 | export default function getAltAxis(axis) { 2 | return axis === 'x' ? 'y' : 'x'; 3 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/math.js: -------------------------------------------------------------------------------- 1 | export var max = Math.max; 2 | export var min = Math.min; 3 | export var round = Math.round; -------------------------------------------------------------------------------- /public/volt/html&css/vendor/sass/sass.default.dart.js: -------------------------------------------------------------------------------- 1 | var library = require('./sass.dart.js'); 2 | library.load({}); 3 | 4 | module.exports = library; 5 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/favicon/favicon.ico -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/overview.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/settings.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/sign-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/sign-in.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/sign-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/sign-up.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/profile-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/profile-cover.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/transactions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/transactions.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/themesberg-mockup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/themesberg-mockup.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/favicon/favicon.ico -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/overview.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/settings.jpg -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/getAltLen.js: -------------------------------------------------------------------------------- 1 | export default function getAltLen(len) { 2 | return len === 'width' ? 'height' : 'width'; 3 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/getVariation.js: -------------------------------------------------------------------------------- 1 | export default function getVariation(placement) { 2 | return placement.split('-')[1]; 3 | } -------------------------------------------------------------------------------- /public/volt/src/assets/img/mockup-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/mockup-presentation.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/reset-password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/reset-password.jpg -------------------------------------------------------------------------------- /public/volt/src/scss/volt/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/form-control"; 2 | @import "forms/form-check"; 3 | @import "forms/input-group"; 4 | @import "forms/form-select"; -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/transactions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/transactions.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/themesberg-mockup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/themesberg-mockup.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/mockup-map-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/mockup-map-presentation.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/forgot-password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/forgot-password.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/team/profile-picture-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/team/profile-picture-1.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/team/profile-picture-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/team/profile-picture-2.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/team/profile-picture-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/team/profile-picture-3.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/team/profile-picture-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/team/profile-picture-4.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/team/profile-picture-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/team/profile-picture-5.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/team/profile-picture-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/team/profile-picture-6.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/mockup-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/mockup-presentation.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/reset-password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/reset-password.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/pages/mockup-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/pages/mockup-presentation.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/mockup-map-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/mockup-map-presentation.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/forgot-password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/forgot-password.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/team/profile-picture-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/team/profile-picture-1.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/team/profile-picture-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/team/profile-picture-2.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/team/profile-picture-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/team/profile-picture-3.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/team/profile-picture-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/team/profile-picture-4.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/team/profile-picture-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/team/profile-picture-5.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/team/profile-picture-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/team/profile-picture-6.jpg -------------------------------------------------------------------------------- /public/volt/src/assets/img/mockup-calendar-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/mockup-calendar-presentation.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/mockup-kanban-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/mockup-kanban-presentation.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/pages/mockup-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/pages/mockup-presentation.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/src/assets/img/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/volt/src/scss/volt/_layout.scss: -------------------------------------------------------------------------------- 1 | @import "layout/navbar"; 2 | @import "layout/section"; 3 | @import "layout/footer"; 4 | @import "layout/sidebar"; 5 | @import "layout/sidenav"; 6 | -------------------------------------------------------------------------------- /public/upload/spots/BhOPt4nIsfx1DCBhbXTJ51eYwkNQEkH1wVb0ACJR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/upload/spots/BhOPt4nIsfx1DCBhbXTJ51eYwkNQEkH1wVb0ACJR.png -------------------------------------------------------------------------------- /public/upload/spots/b9OSWUcvJrVHeGzR8bd38y7bpL1AYU8c9fodsuTp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/upload/spots/b9OSWUcvJrVHeGzR8bd38y7bpL1AYU8c9fodsuTp.jpg -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/mockup-calendar-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/mockup-calendar-presentation.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/mockup-kanban-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/mockup-kanban-presentation.png -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eripratama1/laravel-gis-basic/HEAD/public/volt/html&css/assets/img/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/getNodeName.js: -------------------------------------------------------------------------------- 1 | export default function getNodeName(element) { 2 | return element ? (element.nodeName || '').toLowerCase() : null; 3 | } -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | $body-bg: #f8fafc; 3 | 4 | // Typography 5 | $font-family-sans-serif: 'Nunito', sans-serif; 6 | $font-size-base: 0.9rem; 7 | $line-height-base: 1.6; 8 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url('https://fonts.bunny.net/css?family=Nunito'); 3 | 4 | // Variables 5 | @import 'variables'; 6 | 7 | // Bootstrap 8 | @import 'bootstrap/scss/bootstrap'; 9 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/getBasePlacement.js: -------------------------------------------------------------------------------- 1 | import { auto } from "../enums.js"; 2 | export default function getBasePlacement(placement) { 3 | return placement.split('-')[0]; 4 | } -------------------------------------------------------------------------------- /public/volt/src/scss/volt/_vendor.scss: -------------------------------------------------------------------------------- 1 | // Vendor 2 | @import "vendor/headroom"; 3 | @import "vendor/nouislider"; 4 | @import "vendor/prism"; 5 | @import "vendor/chartist/chartist"; 6 | @import "vendor/datepicker"; 7 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/getMainAxisFromPlacement.js: -------------------------------------------------------------------------------- 1 | export default function getMainAxisFromPlacement(placement) { 2 | return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; 3 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/getFreshSideObject.js: -------------------------------------------------------------------------------- 1 | export default function getFreshSideObject() { 2 | return { 3 | top: 0, 4 | right: 0, 5 | bottom: 0, 6 | left: 0 7 | }; 8 | } -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | = 0; 4 | } -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | .styleci.yml export-ignore 12 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/expandToHashMap.js: -------------------------------------------------------------------------------- 1 | export default function expandToHashMap(value, keys) { 2 | return keys.reduce(function (hashMap, key) { 3 | hashMap[key] = value; 4 | return hashMap; 5 | }, {}); 6 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/popper-base.js: -------------------------------------------------------------------------------- 1 | import { createPopper, popperGenerator, detectOverflow } from "./createPopper.js"; 2 | // eslint-disable-next-line import/no-unused-modules 3 | export { createPopper, popperGenerator, detectOverflow }; -------------------------------------------------------------------------------- /public/volt/src/scss/volt/_mixins.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/animations"; 2 | @import "mixins/background-variant"; 3 | @import "mixins/icon"; 4 | @import "mixins/modals"; 5 | @import "mixins/popover"; 6 | @import "mixins/transform"; 7 | @import "mixins/utilities"; 8 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_datepicker.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Datepickers 3 | */ 4 | 5 | .datepicker { 6 | 7 | .datepicker-cell.selected, 8 | .datepicker-cell.selected:hover { 9 | background: $primary; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/mergePaddingObject.js: -------------------------------------------------------------------------------- 1 | import getFreshSideObject from "./getFreshSideObject.js"; 2 | export default function mergePaddingObject(paddingObject) { 3 | return Object.assign({}, getFreshSideObject(), paddingObject); 4 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/sass/sass.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var library = require('./sass.dart.js'); 4 | library.load({ 5 | readline: require("readline"), 6 | chokidar: require("chokidar"), 7 | }); 8 | 9 | library.cli_pkg_main_0_(process.argv.slice(2)); 10 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/rectToClientRect.js: -------------------------------------------------------------------------------- 1 | export default function rectToClientRect(rect) { 2 | return Object.assign({}, rect, { 3 | left: rect.x, 4 | top: rect.y, 5 | right: rect.x + rect.width, 6 | bottom: rect.y + rect.height 7 | }); 8 | } -------------------------------------------------------------------------------- /public/volt/src/partials/_analytics_body.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /app/Models/Centre_Point.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #ffffff 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #ffffff 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/within.js: -------------------------------------------------------------------------------- 1 | import { max as mathMax, min as mathMin } from "./math.js"; 2 | export function within(min, value, max) { 3 | return mathMax(min, mathMin(value, max)); 4 | } 5 | export function withinMaxClamp(min, value, max) { 6 | var v = within(min, value, max); 7 | return v > max ? max : v; 8 | } -------------------------------------------------------------------------------- /public/volt/src/scss/volt/forms/_input-group.scss: -------------------------------------------------------------------------------- 1 | .input-group { 2 | .form-control:focus { 3 | border-color: $input-border-color; 4 | 5 | & + .input-group-text { 6 | border-color: $input-border-color; 7 | } 8 | } 9 | } 10 | 11 | .input-group-text{ 12 | @include box-shadow($input-box-shadow); 13 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_shapes.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Shapes 3 | */ 4 | 5 | .avatar-sm { 6 | width: $avatar-sm-y; 7 | height: $avatar-sm-x; 8 | } 9 | 10 | .avatar-md { 11 | width: $avatar-md-y; 12 | height: $avatar-md-x; 13 | } 14 | 15 | .avatar-lg { 16 | width: $avatar-lg-y; 17 | height: $avatar-lg-x; 18 | } 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/uniqueBy.js: -------------------------------------------------------------------------------- 1 | export default function uniqueBy(arr, fn) { 2 | var identifiers = new Set(); 3 | return arr.filter(function (item) { 4 | var identifier = fn(item); 5 | 6 | if (!identifiers.has(identifier)) { 7 | identifiers.add(identifier); 8 | return true; 9 | } 10 | }); 11 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/getOppositePlacement.js: -------------------------------------------------------------------------------- 1 | var hash = { 2 | left: 'right', 3 | right: 'left', 4 | bottom: 'top', 5 | top: 'bottom' 6 | }; 7 | export default function getOppositePlacement(placement) { 8 | return placement.replace(/left|right|bottom|top/g, function (matched) { 9 | return hash[matched]; 10 | }); 11 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/getWindowScroll.js: -------------------------------------------------------------------------------- 1 | import getWindow from "./getWindow.js"; 2 | export default function getWindowScroll(node) { 3 | var win = getWindow(node); 4 | var scrollLeft = win.pageXOffset; 5 | var scrollTop = win.pageYOffset; 6 | return { 7 | scrollLeft: scrollLeft, 8 | scrollTop: scrollTop 9 | }; 10 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/format.js: -------------------------------------------------------------------------------- 1 | export default function format(str) { 2 | for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { 3 | args[_key - 1] = arguments[_key]; 4 | } 5 | 6 | return [].concat(args).reduce(function (p, c) { 7 | return p.replace(/%s/, c); 8 | }, str); 9 | } -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_popover.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Popovers 3 | */ 4 | 5 | .popover { 6 | border: 0; 7 | } 8 | 9 | 10 | .popover-header { 11 | font-weight: $font-weight-bold; 12 | } 13 | 14 | // Alternative colors 15 | @each $color, $value in $theme-colors { 16 | .popover-#{$color} { 17 | @include popover-variant($value); 18 | } 19 | } -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "vite", 5 | "build": "vite build" 6 | }, 7 | "devDependencies": { 8 | "@popperjs/core": "^2.11.6", 9 | "axios": "^1.1.2", 10 | "bootstrap": "^5.2.3", 11 | "laravel-vite-plugin": "^0.7.2", 12 | "sass": "^1.56.1", 13 | "vite": "^4.0.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/marker.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/getDocumentElement.js: -------------------------------------------------------------------------------- 1 | import { isElement } from "./instanceOf.js"; 2 | export default function getDocumentElement(element) { 3 | // $FlowFixMe[incompatible-return]: assume body is always available 4 | return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing] 5 | element.document) || window.document).documentElement; 6 | } -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_pagination.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Paginations 3 | */ 4 | .circle-pagination{ 5 | .page-link, 6 | span{ 7 | @include display-flex(); 8 | align-items: center; 9 | justify-content: center; 10 | width: 34px; 11 | height: 34px; 12 | padding: 0; 13 | @include border-radius($circle-radius); 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/debounce.js: -------------------------------------------------------------------------------- 1 | export default function debounce(fn) { 2 | var pending; 3 | return function () { 4 | if (!pending) { 5 | pending = new Promise(function (resolve) { 6 | Promise.resolve().then(function () { 7 | pending = undefined; 8 | resolve(fn()); 9 | }); 10 | }); 11 | } 12 | 13 | return pending; 14 | }; 15 | } -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/icons/google_analytics.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/mixins/_transform.scss: -------------------------------------------------------------------------------- 1 | 2 | @mixin transform($transforms) { 3 | -moz-transform: $transforms; 4 | -o-transform: $transforms; 5 | -ms-transform: $transforms; 6 | -webkit-transform: $transforms; 7 | transform: $transforms; 8 | } 9 | 10 | 11 | // translate 12 | @mixin translate ($x, $y) { 13 | @include transform(translate($x, $y)); 14 | } 15 | 16 | // rotate 17 | @mixin rotate ($deg) { 18 | @include transform(rotate(#{$deg}deg)); 19 | } -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/icons/google_analytics.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 16 | 17 | $response->assertStatus(200); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/brand/light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_body.scss: -------------------------------------------------------------------------------- 1 | iframe { 2 | border: 0; 3 | } 4 | 5 | figcaption, 6 | figure, 7 | main { 8 | display: block; 9 | margin: 0; 10 | } 11 | 12 | main { 13 | overflow: hidden; 14 | } 15 | 16 | img { 17 | max-width: 100%; 18 | } 19 | 20 | strong{ 21 | font-weight: $font-weight-bold; 22 | } 23 | 24 | button:focus { 25 | outline: 0; 26 | } 27 | 28 | label { 29 | font-weight: $font-weight-bold; 30 | margin-bottom:.5rem; 31 | } -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | 'current_password', 16 | 'password', 17 | 'password_confirmation', 18 | ]; 19 | } 20 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 18 | 19 | return $app; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | public function hosts(): array 15 | { 16 | return [ 17 | $this->allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | expectsJson() ? null : route('login'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/index.js: -------------------------------------------------------------------------------- 1 | export * from "./enums.js"; 2 | export * from "./modifiers/index.js"; // eslint-disable-next-line import/no-unused-modules 3 | 4 | export { popperGenerator, detectOverflow, createPopper as createPopperBase } from "./createPopper.js"; // eslint-disable-next-line import/no-unused-modules 5 | 6 | export { createPopper } from "./popper.js"; // eslint-disable-next-line import/no-unused-modules 7 | 8 | export { createPopper as createPopperLite } from "./popper-lite.js"; -------------------------------------------------------------------------------- /public/volt/src/scss/volt/mixins/_modals.scss: -------------------------------------------------------------------------------- 1 | @mixin modal-variant($background) { 2 | .modal-title { 3 | color: color-yiq($background); 4 | } 5 | .modal-header, 6 | .modal-footer { 7 | border-color: rgba($background, .075); 8 | } 9 | .modal-content { 10 | background-color: $background; 11 | color: color-yiq($background); 12 | 13 | .heading { 14 | color: color-yiq($background); 15 | } 16 | } 17 | 18 | .close { 19 | &>span:not(.sr-only) { 20 | color: $white; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/isScrollParent.js: -------------------------------------------------------------------------------- 1 | import getComputedStyle from "./getComputedStyle.js"; 2 | export default function isScrollParent(element) { 3 | // Firefox wants us to check `-x` and `-y` variations as well 4 | var _getComputedStyle = getComputedStyle(element), 5 | overflow = _getComputedStyle.overflow, 6 | overflowX = _getComputedStyle.overflowX, 7 | overflowY = _getComputedStyle.overflowY; 8 | 9 | return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX); 10 | } -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Themesberg", 3 | "short_name": "Themesberg", 4 | "icons": [ 5 | { 6 | "src": "/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#ffffff", 17 | "background_color": "#ffffff", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/forms/_form-control.scss: -------------------------------------------------------------------------------- 1 | .form-control{ 2 | 3 | @include media-breakpoint-up(lg) { 4 | &.form-control-lg{ 5 | padding: $inpu-lg-padding-y $input-padding-x; 6 | } 7 | } 8 | 9 | } 10 | 11 | .search-bar { 12 | .form-control { 13 | width: 280px; 14 | transition: width .2s ease-in-out; 15 | 16 | @include media-breakpoint-down(sm) { 17 | width: 120px; 18 | 19 | &:focus { 20 | width: 150px; 21 | } 22 | } 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Themesberg", 3 | "short_name": "Themesberg", 4 | "icons": [ 5 | { 6 | "src": "/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#ffffff", 17 | "background_color": "#ffffff", 18 | "display": "standalone" 19 | } 20 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_timelines.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Timelines 3 | */ 4 | 5 | .list-group-timeline { 6 | .list-group-item { 7 | position: relative; 8 | .col-auto{ 9 | z-index: 999; 10 | } 11 | &:not(:last-child){ 12 | &::before { 13 | content: ''; 14 | position: absolute; 15 | top: 1rem; 16 | left: 2.5rem; 17 | height: 100%; 18 | border-left: 1px solid $light; 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/modifiers/index.js: -------------------------------------------------------------------------------- 1 | export { default as applyStyles } from "./applyStyles.js"; 2 | export { default as arrow } from "./arrow.js"; 3 | export { default as computeStyles } from "./computeStyles.js"; 4 | export { default as eventListeners } from "./eventListeners.js"; 5 | export { default as flip } from "./flip.js"; 6 | export { default as hide } from "./hide.js"; 7 | export { default as offset } from "./offset.js"; 8 | export { default as popperOffsets } from "./popperOffsets.js"; 9 | export { default as preventOverflow } from "./preventOverflow.js"; -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 'fbclid', 16 | // 'utm_campaign', 17 | // 'utm_content', 18 | // 'utm_medium', 19 | // 'utm_source', 20 | // 'utm_term', 21 | ]; 22 | } 23 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 16 | 17 | // \App\Models\User::factory()->create([ 18 | // 'name' => 'Test User', 19 | // 'email' => 'test@example.com', 20 | // ]); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/favicon/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bootstrap", 3 | "short_name": "Bootstrap", 4 | "icons": [ 5 | { 6 | "src": "/docs/4.3/assets/img/favicons/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/docs/4.3/assets/img/favicons/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "start_url": "/?utm_source=a2hs", 17 | "theme_color": "#563d7c", 18 | "background_color": "#563d7c", 19 | "display": "standalone" 20 | } 21 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/favicon/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bootstrap", 3 | "short_name": "Bootstrap", 4 | "icons": [ 5 | { 6 | "src": "/docs/4.3/assets/img/favicons/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/docs/4.3/assets/img/favicons/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "start_url": "/?utm_source=a2hs", 17 | "theme_color": "#563d7c", 18 | "background_color": "#563d7c", 19 | "display": "standalone" 20 | } 21 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/waypoints/testem.json: -------------------------------------------------------------------------------- 1 | { 2 | "framework": "jasmine", 3 | "launch_in_dev": [ 4 | "PhantomJS" 5 | ], 6 | "launch_in_ci": [ 7 | "PhantomJS" 8 | ], 9 | "src_files": [ 10 | "bower_components/jquery/dist/jquery.js", 11 | "bower_components/jasmine-jquery/lib/jasmine-jquery.js", 12 | "bower_components/zepto/zepto.js", 13 | 14 | "src/waypoint.js", 15 | "src/context.js", 16 | "src/group.js", 17 | "src/debug.js", 18 | "src/adapters/*.js", 19 | "src/shortcuts/*.js", 20 | 21 | "test/settings.js", 22 | "test/*-spec.js" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/forms/_form-select.scss: -------------------------------------------------------------------------------- 1 | .form-select { 2 | .form-select-lg{ 3 | padding: $form-select-padding-y ($form-select-padding-x + $form-select-indicator-padding) $form-select-padding-y $form-select-padding-x; 4 | } 5 | } 6 | 7 | //Add File Alternative Style 8 | 9 | .file-field input[type="file"] { 10 | max-width: 230px; 11 | position: absolute; 12 | cursor: pointer; 13 | filter: alpha(opacity=0); 14 | opacity: 0; 15 | padding-bottom: 30px; 16 | } 17 | .file-field svg { 18 | cursor: pointer; 19 | } 20 | 21 | .datepicker-dropdown { 22 | z-index: 9999; 23 | } -------------------------------------------------------------------------------- /public/volt/src/assets/img/technologies/vuejs-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/technologies/vuejs-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/utils/mergeByName.js: -------------------------------------------------------------------------------- 1 | export default function mergeByName(modifiers) { 2 | var merged = modifiers.reduce(function (merged, current) { 3 | var existing = merged[current.name]; 4 | merged[current.name] = existing ? Object.assign({}, existing, current, { 5 | options: Object.assign({}, existing.options, current.options), 6 | data: Object.assign({}, existing.data, current.data) 7 | }) : current; 8 | return merged; 9 | }, {}); // IE11 does not support Object.values 10 | 11 | return Object.keys(merged).map(function (key) { 12 | return merged[key]; 13 | }); 14 | } -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /app/Models/Spot.php: -------------------------------------------------------------------------------- 1 | image) { 17 | // return asset('storage/ImageSpots/'.$this->image); 18 | // } 19 | 20 | if ($this->image) { 21 | return asset('/upload/spots/'.$this->image); 22 | } 23 | 24 | return 'https://placehold.co/150x200?text=No+Image'; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/getScrollParent.js: -------------------------------------------------------------------------------- 1 | import getParentNode from "./getParentNode.js"; 2 | import isScrollParent from "./isScrollParent.js"; 3 | import getNodeName from "./getNodeName.js"; 4 | import { isHTMLElement } from "./instanceOf.js"; 5 | export default function getScrollParent(node) { 6 | if (['html', 'body', '#document'].indexOf(getNodeName(node)) >= 0) { 7 | // $FlowFixMe[incompatible-return]: assume body is always available 8 | return node.ownerDocument.body; 9 | } 10 | 11 | if (isHTMLElement(node) && isScrollParent(node)) { 12 | return node; 13 | } 14 | 15 | return getScrollParent(getParentNode(node)); 16 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | (function () { 5 | Datepicker.locales.hr = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }()); 14 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/popper-lite.js: -------------------------------------------------------------------------------- 1 | import { popperGenerator, detectOverflow } from "./createPopper.js"; 2 | import eventListeners from "./modifiers/eventListeners.js"; 3 | import popperOffsets from "./modifiers/popperOffsets.js"; 4 | import computeStyles from "./modifiers/computeStyles.js"; 5 | import applyStyles from "./modifiers/applyStyles.js"; 6 | var defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles]; 7 | var createPopper = /*#__PURE__*/popperGenerator({ 8 | defaultModifiers: defaultModifiers 9 | }); // eslint-disable-next-line import/no-unused-modules 10 | 11 | export { createPopper, popperGenerator, defaultModifiers, detectOverflow }; -------------------------------------------------------------------------------- /public/volt/src/scss/volt/_functions.scss: -------------------------------------------------------------------------------- 1 | // Retrieve color Sass maps 2 | 3 | @function section-color($key: "primary") { 4 | @return map-get($section-colors, $key); 5 | } 6 | 7 | // Lines colors 8 | 9 | @function shapes-primary-color($key: "step-1-gradient-bg") { 10 | @return map-get($shapes-primary-colors, $key); 11 | } 12 | 13 | @function shapes-default-color($key: "step-1-gradient-bg") { 14 | @return map-get($shapes-default-colors, $key); 15 | } 16 | 17 | @function lines-light-color($key: "step-1-gradient-bg") { 18 | @return map-get($shapes-light-colors, $key); 19 | } 20 | 21 | @function shapes-dark-color($key: "step-1-gradient-bg") { 22 | @return map-get($shapes-dark-colors, $key); 23 | } -------------------------------------------------------------------------------- /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 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire')->hourly(); 16 | } 17 | 18 | /** 19 | * Register the commands for the application. 20 | */ 21 | protected function commands(): void 22 | { 23 | $this->load(__DIR__.'/Commands'); 24 | 25 | require base_path('routes/console.php'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | (function () { 6 | Datepicker.locales.he = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | (function () { 6 | Datepicker.locales.ja = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd", 14 | titleFormat: "y年mm月", 15 | clear: "クリア" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | (function () { 6 | Datepicker.locales.cy = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }()); 15 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/mixins/_icon.scss: -------------------------------------------------------------------------------- 1 | @mixin icon-shape-variant($color) { 2 | color: $color; 3 | background-color: rgba( $color, .3 ); 4 | } 5 | 6 | @mixin icon-parallax-background($background-position,$background-size,$background-attachment,$background-repeat) { 7 | background-position: $background-position; 8 | background-size: $background-size; 9 | background-attachment: $background-attachment; 10 | background-repeat: $background-repeat; 11 | } 12 | 13 | @mixin icon-image-background($background-position,$background-size,$background-repeat) { 14 | background-position: $background-position; 15 | background-size: $background-size; 16 | background-repeat: $background-repeat; 17 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | (function () { 3 | Datepicker.locales.az = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1, 11 | clear: "Təmizlə", 12 | monthsTitle: 'Aylar' 13 | }; 14 | }()); 15 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | (function () { 6 | Datepicker.locales.bg = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }()); 15 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_modal.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Modals 3 | */ 4 | 5 | .modal{ 6 | &.static-example{ 7 | position: relative; 8 | display: block; 9 | } 10 | } 11 | 12 | .modal-content { 13 | border: 0; 14 | @if $enable-rounded { 15 | border-radius: $modal-content-border-radius; 16 | } @else { 17 | border-radius: 0; 18 | } 19 | } 20 | 21 | .modal-fluid { 22 | .modal-dialog { 23 | margin-top: 0; 24 | margin-bottom: 0; 25 | } 26 | .modal-content { 27 | border-radius: 0; 28 | } 29 | } 30 | 31 | @each $color, $value in $theme-colors { 32 | .modal-#{$color} { 33 | @include modal-variant($value); 34 | } 35 | } 36 | 37 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/bs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bosnian translation for bootstrap-datepicker 3 | */ 4 | (function () { 5 | Datepicker.locales.bs = { 6 | days: ["Nedjelja","Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"], 8 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su"], 9 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Juni", "Juli", "August", "Septembar", "Oktobar", "Novembar", "Decembar"], 10 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 11 | today: "Danas", 12 | weekStart: 1, 13 | format: "dd.mm.yyyy" 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/gl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Galician translation 3 | */ 4 | (function () { 5 | Datepicker.locales.gl = { 6 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado"], 7 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb"], 8 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa"], 9 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 10 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 11 | today: "Hoxe", 12 | clear: "Limpar", 13 | weekStart: 1, 14 | format: "dd/mm/yyyy" 15 | }; 16 | }()); 17 | -------------------------------------------------------------------------------- /public/volt/src/partials/dashboard/_nav.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | (function () { 6 | Datepicker.locales.ms = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini", 13 | clear: "Bersihkan" 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- 1 | 14 | */ 15 | protected $policies = [ 16 | // 'App\Models\Model' => 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | */ 22 | public function boot(): void 23 | { 24 | $this->registerPolicies(); 25 | 26 | // 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/kk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kazakh translation for bootstrap-datepicker 3 | * Yerzhan Tolekov 4 | */ 5 | (function () { 6 | Datepicker.locales.kk = { 7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі"], 8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен"], 9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн"], 10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"], 11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мам", "Мау", "Шіл", "Там", "Қыр", "Қаз", "Қар", "Жел"], 12 | today: "Бүгін", 13 | weekStart: 1 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | (function () { 6 | Datepicker.locales.sl = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes", 13 | weekStart: 1 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | (function () { 6 | Datepicker.locales.th = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }()); 15 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation for bootstrap-datepicker 3 | * Hinrik Örn Sigurðsson 4 | */ 5 | (function () { 6 | Datepicker.locales.is = { 7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur"], 8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau"], 9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La"], 10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], 12 | today: "Í Dag" 13 | }; 14 | }()); 15 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Macedonian translation for bootstrap-datepicker 3 | * Marko Aleksic 4 | */ 5 | (function () { 6 | Datepicker.locales.mk = { 7 | days: ["Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сре", "Чет", "Пет", "Саб"], 9 | daysMin: ["Не", "По", "Вт", "Ср", "Че", "Пе", "Са"], 10 | months: ["Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Јан", "Фев", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "Денес", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /database/migrations/2023_07_10_081912_create_centre__points_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('coordinates'); 17 | $table->timestamps(); 18 | }); 19 | } 20 | 21 | /** 22 | * Reverse the migrations. 23 | */ 24 | public function down(): void 25 | { 26 | Schema::dropIfExists('centre__points'); 27 | } 28 | }; 29 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/instanceOf.js: -------------------------------------------------------------------------------- 1 | import getWindow from "./getWindow.js"; 2 | 3 | function isElement(node) { 4 | var OwnElement = getWindow(node).Element; 5 | return node instanceof OwnElement || node instanceof Element; 6 | } 7 | 8 | function isHTMLElement(node) { 9 | var OwnElement = getWindow(node).HTMLElement; 10 | return node instanceof OwnElement || node instanceof HTMLElement; 11 | } 12 | 13 | function isShadowRoot(node) { 14 | // IE 11 has no ShadowRoot 15 | if (typeof ShadowRoot === 'undefined') { 16 | return false; 17 | } 18 | 19 | var OwnElement = getWindow(node).ShadowRoot; 20 | return node instanceof OwnElement || node instanceof ShadowRoot; 21 | } 22 | 23 | export { isElement, isHTMLElement, isShadowRoot }; -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * This is a port from https: //github.com/moment/moment/blob/develop/src/locale/ko.js 4 | */ 5 | (function () { 6 | Datepicker.locales.ko = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 12 | today: "오늘", 13 | clear: "삭제", 14 | format: "yyyy-mm-dd", 15 | titleFormat: "y년mm월", 16 | weekStart: 0 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/sr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | (function () { 6 | Datepicker.locales.sr = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас", 13 | weekStart: 1, 14 | format: "dd.mm.yyyy" 15 | }; 16 | }()); 17 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | (function () { 6 | Datepicker.locales['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今天", 13 | monthsTitle: "选择月份", 14 | clear: "清除", 15 | format: "yyyy-mm-dd", 16 | titleFormat: "y年mm月", 17 | weekStart: 1 18 | }; 19 | }()); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ar-tn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic-Tunisia translation for bootstrap-datepicker 3 | * Souhaieb Besbes 4 | */ 5 | (function () { 6 | Datepicker.locales['ar-tn'] = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"], 11 | monthsShort: ["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | @mixin bg-variant($parent, $color) { 3 | #{$parent} { 4 | background-color: $color !important; 5 | } 6 | a#{$parent}, 7 | button#{$parent} { 8 | @include hover-focus { 9 | background-color: darken($color, 10%) !important; 10 | } 11 | } 12 | } 13 | 14 | @mixin bg-gradient-variant($parent, $color) { 15 | #{$parent} { 16 | background: linear-gradient(87deg, $color 0, saturate($color, 10%) 100%) !important; 17 | } 18 | } 19 | 20 | @mixin background-image($background-repeat,$background-size) { 21 | background-repeat: $background-repeat; 22 | background-position: top center; 23 | background-size: $background-size; 24 | } 25 | 26 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/mn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Mongolian translation for bootstrap-datepicker 3 | * Andrey Torsunov 4 | */ 5 | (function () { 6 | Datepicker.locales.mn = { 7 | days: ["Ням", "Даваа", "Мягмар", "Лхагва", "Пүрэв", "Баасан", "Бямба"], 8 | daysShort: ["Ням", "Дав", "Мяг", "Лха", "Пүр", "Баа", "Бям"], 9 | daysMin: ["Ня", "Да", "Мя", "Лх", "Пү", "Ба", "Бя"], 10 | months: ["Хулгана", "Үхэр", "Бар", "Туулай", "Луу", "Могой", "Морь", "Хонь", "Бич", "Тахиа", "Нохой", "Гахай"], 11 | monthsShort: ["Хул", "Үхэ", "Бар", "Туу", "Луу", "Мог", "Мор", "Хон", "Бич", "Тах", "Нох", "Гах"], 12 | today: "Өнөөдөр", 13 | clear: "Тодорхой", 14 | format: "yyyy.mm.dd", 15 | weekStart: 1 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | |string|null 14 | */ 15 | protected $proxies; 16 | 17 | /** 18 | * The headers that should be used to detect proxies. 19 | * 20 | * @var int 21 | */ 22 | protected $headers = 23 | Request::HEADER_X_FORWARDED_FOR | 24 | Request::HEADER_X_FORWARDED_HOST | 25 | Request::HEADER_X_FORWARDED_PORT | 26 | Request::HEADER_X_FORWARDED_PROTO | 27 | Request::HEADER_X_FORWARDED_AWS_ELB; 28 | } 29 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic translation for bootstrap-datepicker 3 | * Mohammed Alshehri 4 | */ 5 | (function () { 6 | Datepicker.locales.ar = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 11 | monthsShort: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | (function () { 5 | Datepicker.locales.el = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα", 12 | clear: "Καθαρισμός", 13 | weekStart: 1, 14 | format: "d/m/yyyy" 15 | }; 16 | }()); 17 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/fo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Faroese translation for bootstrap-datepicker 3 | * Theodor Johannesen 4 | */ 5 | (function () { 6 | Datepicker.locales.fo = { 7 | days: ["Sunnudagur", "Mánadagur", "Týsdagur", "Mikudagur", "Hósdagur", "Fríggjadagur", "Leygardagur"], 8 | daysShort: ["Sun", "Mán", "Týs", "Mik", "Hós", "Frí", "Ley"], 9 | daysMin: ["Su", "Má", "Tý", "Mi", "Hó", "Fr", "Le"], 10 | months: ["Januar", "Februar", "Marts", "Apríl", "Mei", "Juni", "Juli", "August", "Septembur", "Oktobur", "Novembur", "Desembur"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "Í Dag", 13 | clear: "Reinsa" 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/oc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Occitan translation for bootstrap-datepicker 3 | */ 4 | (function () { 5 | Datepicker.locales.oc = { 6 | days: ["Dimenge", "Diluns", "Dimars", "Dimècres", "Dijòus", "Divendres", "Dissabte"], 7 | daysShort: ["Dim", "Dil", "Dmr", "Dmc", "Dij", "Div", "Dis"], 8 | daysMin: ["dg", "dl", "dr", "dc", "dj", "dv", "ds"], 9 | months: ["Genièr", "Febrièr", "Març", "Abrial", "Mai", "Junh", "Julhet", "Agost", "Setembre", "Octobre", "Novembre", "Decembre"], 10 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Dec"], 11 | today: "Uèi", 12 | monthsTitle: "Meses", 13 | clear: "Escafar", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/sr-latn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | (function () { 6 | Datepicker.locales['sr-latn'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas", 13 | weekStart: 1, 14 | format: "dd.mm.yyyy" 15 | }; 16 | }()); 17 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- 1 | 4 | */ 5 | (function () { 6 | Datepicker.locales.tr = { 7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi"], 8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts"], 9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct"], 10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], 11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], 12 | today: "Bugün", 13 | clear: "Temizle", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/mixins/_popover.scss: -------------------------------------------------------------------------------- 1 | @mixin popover-variant($background) { 2 | 3 | background-color: $background; 4 | 5 | .popover-header { 6 | background-color: $background; 7 | color: color-yiq($background); 8 | } 9 | 10 | .popover-body { 11 | color: color-yiq($background); 12 | } 13 | .popover-header{ 14 | border-color: rgba($background, .2); 15 | } 16 | &.bs-popover-top { 17 | .arrow::after { 18 | border-top-color: $background; 19 | } 20 | } 21 | &.bs-popover-end { 22 | .arrow::after { 23 | border-right-color: $background; 24 | } 25 | } 26 | &.bs-popover-bottom { 27 | .arrow::after { 28 | border-bottom-color: $background; 29 | } 30 | } 31 | &.bs-popover-start { 32 | .arrow::after { 33 | border-left-color: $background; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swedish translation for bootstrap-datepicker 3 | * Patrik Ragnarsson 4 | */ 5 | (function () { 6 | Datepicker.locales.sv = { 7 | days: ["söndag", "måndag", "tisdag", "onsdag", "torsdag", "fredag", "lördag"], 8 | daysShort: ["sön", "mån", "tis", "ons", "tor", "fre", "lör"], 9 | daysMin: ["sö", "må", "ti", "on", "to", "fr", "lö"], 10 | months: ["januari", "februari", "mars", "april", "maj", "juni", "juli", "augusti", "september", "oktober", "november", "december"], 11 | monthsShort: ["jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"], 12 | today: "Idag", 13 | format: "yyyy-mm-dd", 14 | weekStart: 1, 15 | clear: "Rensa" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukrainian translation for bootstrap-datepicker 3 | * Igor Polynets 4 | */ 5 | (function () { 6 | Datepicker.locales.uk = { 7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятниця", "Субота"], 8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб"], 9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], 11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 12 | today: "Сьогодні", 13 | clear: "Очистити", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/en-IE.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Irish English translation for bootstrap-datepicker 3 | */ 4 | (function () { 5 | Datepicker.locales['en-IE'] = { 6 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 7 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 8 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 9 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 10 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 11 | today: "Today", 12 | monthsTitle: "Months", 13 | clear: "Clear", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation for bootstrap-datepicker 3 | * Mostafa Rokooie 4 | */ 5 | (function () { 6 | Datepicker.locales.fa = { 7 | days: ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه", "یک‌شنبه"], 8 | daysShort: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه", "یک"], 9 | daysMin: ["ی", "د", "س", "چ", "پ", "ج", "ش", "ی"], 10 | months: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"], 11 | monthsShort: ["ژان", "فور", "مار", "آور", "مه", "ژون", "ژوی", "اوت", "سپت", "اکت", "نوا", "دسا"], 12 | today: "امروز", 13 | clear: "پاک کن", 14 | weekStart: 1, 15 | format: "yyyy/mm/dd" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/me.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Montenegrin translation for bootstrap-datepicker 3 | * Miodrag Nikač 4 | */ 5 | (function () { 6 | Datepicker.locales.me = { 7 | days: ["Nedjelja","Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"], 9 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas", 13 | weekStart: 1, 14 | clear: "Izbriši", 15 | format: "dd.mm.yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/en-NZ.js: -------------------------------------------------------------------------------- 1 | /** 2 | * New Zealand English translation for bootstrap-datepicker 3 | */ 4 | (function () { 5 | Datepicker.locales['en-NZ'] = { 6 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 7 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 8 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 9 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 10 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 11 | today: "Today", 12 | monthsTitle: "Months", 13 | clear: "Clear", 14 | weekStart: 1, 15 | format: "d/mm/yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Vietnamese translation for bootstrap-datepicker 3 | * An Vo 4 | */ 5 | (function () { 6 | Datepicker.locales.vi = { 7 | days: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"], 8 | daysShort: ["CN", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7"], 9 | daysMin: ["CN", "T2", "T3", "T4", "T5", "T6", "T7"], 10 | months: ["Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12"], 11 | monthsShort: ["Th1", "Th2", "Th3", "Th4", "Th5", "Th6", "Th7", "Th8", "Th9", "Th10", "Th11", "Th12"], 12 | today: "Hôm nay", 13 | clear: "Xóa", 14 | format: "dd/mm/yyyy" 15 | }; 16 | }()); 17 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/japan.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/japan.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/en-ZA.js: -------------------------------------------------------------------------------- 1 | /** 2 | * South African English translation for bootstrap-datepicker 3 | */ 4 | (function () { 5 | Datepicker.locales['en-ZA'] = { 6 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 7 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 8 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 9 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 10 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 11 | today: "Today", 12 | monthsTitle: "Months", 13 | clear: "Clear", 14 | weekStart: 1, 15 | format: "yyyy/mm/d" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Brazilian translation for bootstrap-datepicker 3 | * Cauan Cabral 4 | */ 5 | (function () { 6 | Datepicker.locales['pt-BR'] = { 7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"], 8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"], 9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa"], 10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 12 | today: "Hoje", 13 | monthsTitle: "Meses", 14 | clear: "Limpar", 15 | format: "dd/mm/yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Romanian translation for bootstrap-datepicker 3 | * Cristian Vasile 4 | */ 5 | (function () { 6 | Datepicker.locales.ro = { 7 | days: ["Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă"], 8 | daysShort: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm"], 9 | daysMin: ["Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ"], 10 | months: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 11 | monthsShort: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Astăzi", 13 | clear: "Șterge", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- 1 | string('email')->primary(); 16 | $table->string('token'); 17 | $table->timestamp('created_at')->nullable(); 18 | }); 19 | } 20 | 21 | /** 22 | * Reverse the migrations. 23 | */ 24 | public function down(): void 25 | { 26 | Schema::dropIfExists('password_reset_tokens'); 27 | } 28 | }; 29 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/sw.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swahili translation for bootstrap-datepicker 3 | * Edwin Mugendi 4 | * Source: http: //scriptsource.org/cms/scripts/page.php?item_id=entry_detail&uid=xnfaqyzcku 5 | */ 6 | (function () { 7 | Datepicker.locales.sw = { 8 | days: ["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi"], 9 | daysShort: ["J2", "J3", "J4", "J5", "Alh", "Ij", "J1"], 10 | daysMin: ["2", "3", "4", "5", "A", "I", "1"], 11 | months: ["Januari", "Februari", "Machi", "Aprili", "Mei", "Juni", "Julai", "Agosti", "Septemba", "Oktoba", "Novemba", "Desemba"], 12 | monthsShort: ["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"], 13 | today: "Leo" 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/layout/_sidebar.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Sidebars 3 | */ 4 | 5 | #doc-index:not(.collapse.show), .doc-sidebar { 6 | display: none; 7 | } 8 | 9 | @include media-breakpoint-up(lg){ 10 | #doc-index{ 11 | display: block; 12 | } 13 | 14 | .doc-sidebar { 15 | display: block; 16 | height: calc(100vh - 2rem); 17 | overflow-y: scroll; 18 | position: -webkit-sticky; 19 | position: sticky; 20 | top: 2rem; 21 | 22 | .nav-link[data-toggle="collapse"] > .icon { 23 | transform: rotateZ(-90deg); 24 | position: relative; 25 | right: .25rem; 26 | } 27 | 28 | .nav{ 29 | .nav-item{ 30 | font-size:$font-size-sm; 31 | } 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/contains.js: -------------------------------------------------------------------------------- 1 | import { isShadowRoot } from "./instanceOf.js"; 2 | export default function contains(parent, child) { 3 | var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method 4 | 5 | if (parent.contains(child)) { 6 | return true; 7 | } // then fallback to custom implementation with Shadow DOM support 8 | else if (rootNode && isShadowRoot(rootNode)) { 9 | var next = child; 10 | 11 | do { 12 | if (next && parent.isSameNode(next)) { 13 | return true; 14 | } // $FlowFixMe[prop-missing]: need a better way to handle this... 15 | 16 | 17 | next = next.parentNode || next.host; 18 | } while (next); 19 | } // Give up, the result is false 20 | 21 | 22 | return false; 23 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * German translation for bootstrap-datepicker 3 | * Sam Zurcher 4 | */ 5 | (function () { 6 | Datepicker.locales.de = { 7 | days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"], 8 | daysShort: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"], 9 | daysMin: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"], 10 | months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], 11 | monthsShort: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], 12 | today: "Heute", 13 | monthsTitle: "Monate", 14 | clear: "Löschen", 15 | weekStart: 1, 16 | format: "dd.mm.yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Latvian translation for bootstrap-datepicker 3 | * Artis Avotins 4 | */ 5 | 6 | (function () { 7 | Datepicker.locales.lv = { 8 | days: ["Svētdiena", "Pirmdiena", "Otrdiena", "Trešdiena", "Ceturtdiena", "Piektdiena", "Sestdiena"], 9 | daysShort: ["Sv", "P", "O", "T", "C", "Pk", "S"], 10 | daysMin: ["Sv", "Pr", "Ot", "Tr", "Ce", "Pk", "Se"], 11 | months: ["Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs", "Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jūn", "Jūl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | monthsTitle: "Mēneši", 14 | today: "Šodien", 15 | clear: "Nodzēst", 16 | weekStart: 1 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/getWindowScrollBarX.js: -------------------------------------------------------------------------------- 1 | import getBoundingClientRect from "./getBoundingClientRect.js"; 2 | import getDocumentElement from "./getDocumentElement.js"; 3 | import getWindowScroll from "./getWindowScroll.js"; 4 | export default function getWindowScrollBarX(element) { 5 | // If has a CSS width greater than the viewport, then this will be 6 | // incorrect for RTL. 7 | // Popper 1 is broken in this case and never had a bug report so let's assume 8 | // it's not an issue. I don't think anyone ever specifies width on 9 | // anyway. 10 | // Browsers where the left scrollbar doesn't cause an issue report `0` for 11 | // this (e.g. Edge 2019, IE11, Safari) 12 | return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft; 13 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Breton translation for bootstrap-datepicker 3 | * Gwenn Meynier 4 | */ 5 | (function () { 6 | Datepicker.locales.br = { 7 | days: ["Sul", "Lun", "Meurzh", "Merc'her", "Yaou", "Gwener", "Sadorn"], 8 | daysShort: ["Sul", "Lun", "Meu.", "Mer.", "Yao.", "Gwe.", "Sad."], 9 | daysMin: ["Su", "L", "Meu", "Mer", "Y", "G", "Sa"], 10 | months: ["Genver", "C'hwevrer", "Meurzh", "Ebrel", "Mae", "Mezheven", "Gouere", "Eost", "Gwengolo", "Here", "Du", "Kerzu"], 11 | monthsShort: ["Genv.", "C'hw.", "Meur.", "Ebre.", "Mae", "Mezh.", "Goue.", "Eost", "Gwen.", "Here", "Du", "Kerz."], 12 | today: "Hiziv", 13 | monthsTitle: "Miz", 14 | clear: "Dilemel", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/eo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Esperanto translation for bootstrap-datepicker 3 | * Emmanuel Debanne 4 | */ 5 | (function () { 6 | Datepicker.locales.eo = { 7 | days: ["dimanĉo", "lundo", "mardo", "merkredo", "ĵaŭdo", "vendredo", "sabato"], 8 | daysShort: ["dim.", "lun.", "mar.", "mer.", "ĵaŭ.", "ven.", "sam."], 9 | daysMin: ["d", "l", "ma", "me", "ĵ", "v", "s"], 10 | months: ["januaro", "februaro", "marto", "aprilo", "majo", "junio", "julio", "aŭgusto", "septembro", "oktobro", "novembro", "decembro"], 11 | monthsShort: ["jan.", "feb.", "mar.", "apr.", "majo", "jun.", "jul.", "aŭg.", "sep.", "okt.", "nov.", "dec."], 12 | today: "Hodiaŭ", 13 | clear: "Nuligi", 14 | weekStart: 1, 15 | format: "yyyy-mm-dd" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/uz-cyrl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Uzbek cyrillic translation for bootstrap-datepicker 3 | * Kakhramonov Javlonbek 4 | */ 5 | (function () { 6 | Datepicker.locales['uz-cyrl'] = { 7 | days: ["Якшанба", "Душанба", "Сешанба", "Чоршанба", "Пайшанба", "Жума", "Шанба"], 8 | daysShort: ["Якш", "Ду", "Се", "Чор", "Пай", "Жу", "Ша"], 9 | daysMin: ["Як", "Ду", "Се", "Чо", "Па", "Жу", "Ша"], 10 | months: ["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"], 11 | monthsShort: ["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"], 12 | today: "Бугун", 13 | clear: "Ўчириш", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1, 16 | monthsTitle: 'Ойлар' 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | (function () { 6 | Datepicker.locales.es = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy", 13 | monthsTitle: "Meses", 14 | clear: "Borrar", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hungarian translation for bootstrap-datepicker 3 | * Sotus László 4 | */ 5 | (function () { 6 | Datepicker.locales.hu = { 7 | days: ["vasárnap", "hétfő", "kedd", "szerda", "csütörtök", "péntek", "szombat"], 8 | daysShort: ["vas", "hét", "ked", "sze", "csü", "pén", "szo"], 9 | daysMin: ["V", "H", "K", "Sze", "Cs", "P", "Szo"], 10 | months: ["január", "február", "március", "április", "május", "június", "július", "augusztus", "szeptember", "október", "november", "december"], 11 | monthsShort: ["jan", "feb", "már", "ápr", "máj", "jún", "júl", "aug", "sze", "okt", "nov", "dec"], 12 | today: "ma", 13 | weekStart: 1, 14 | clear: "töröl", 15 | titleFormat: "y. MM", 16 | format: "yyyy.mm.dd" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ka.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Georgian translation for bootstrap-datepicker 3 | * Levan Melikishvili 4 | */ 5 | (function () { 6 | Datepicker.locales.ka = { 7 | days: ["კვირა", "ორშაბათი", "სამშაბათი", "ოთხშაბათი", "ხუთშაბათი", "პარასკევი", "შაბათი"], 8 | daysShort: ["კვი", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ"], 9 | daysMin: ["კვ", "ორ", "სა", "ოთ", "ხუ", "პა", "შა"], 10 | months: ["იანვარი", "თებერვალი", "მარტი", "აპრილი", "მაისი", "ივნისი", "ივლისი", "აგვისტო", "სექტემბერი", "ოქტომბერი", "ნოემბერი", "დეკემბერი"], 11 | monthsShort: ["იან", "თებ", "მარ", "აპრ", "მაი", "ივნ", "ივლ", "აგვ", "სექ", "ოქტ", "ნოე", "დეკ"], 12 | today: "დღეს", 13 | clear: "გასუფთავება", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Polish translation for bootstrap-datepicker 3 | * Robert 4 | */ 5 | (function () { 6 | Datepicker.locales.pl = { 7 | days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota"], 8 | daysShort: ["Niedz.", "Pon.", "Wt.", "Śr.", "Czw.", "Piąt.", "Sob."], 9 | daysMin: ["Ndz.", "Pn.", "Wt.", "Śr.", "Czw.", "Pt.", "Sob."], 10 | months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"], 11 | monthsShort: ["Sty.", "Lut.", "Mar.", "Kwi.", "Maj", "Cze.", "Lip.", "Sie.", "Wrz.", "Paź.", "Lis.", "Gru."], 12 | today: "Dzisiaj", 13 | weekStart: 1, 14 | clear: "Wyczyść", 15 | format: "dd.mm.yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/tk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkmen translation for bootstrap-datepicker 3 | * N'Bayramberdiyev 4 | */ 5 | (function () { 6 | Datepicker.locales.tk = { 7 | days: ["Ýekşenbe", "Duşenbe", "Sişenbe", "Çarşenbe", "Penşenbe", "Anna", "Şenbe"], 8 | daysShort: ["Ýek", "Duş", "Siş", "Çar", "Pen", "Ann", "Şen"], 9 | daysMin: ["Ýe", "Du", "Si", "Ça", "Pe", "An", "Şe"], 10 | months: ["Ýanwar", "Fewral", "Mart", "Aprel", "Maý", "Iýun", "Iýul", "Awgust", "Sentýabr", "Oktýabr", "Noýabr", "Dekabr"], 11 | monthsShort: ["Ýan", "Few", "Mar", "Apr", "Maý", "Iýn", "Iýl", "Awg", "Sen", "Okt", "Noý", "Dek"], 12 | today: "Bu gün", 13 | monthsTitle: "Aýlar", 14 | clear: "Aýyr", 15 | weekStart: 1, 16 | format: "dd.mm.yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/indonesia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/ukraine.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/indonesia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/ukraine.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/bm.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bamanankan (bm) translation for bootstrap-datepicker 3 | * Fatou Fall 4 | */ 5 | (function () { 6 | Datepicker.locales.bm = { 7 | days: ["Kari","Ntɛnɛn","Tarata","Araba","Alamisa","Juma","Sibiri"], 8 | daysShort: ["Kar","Ntɛ","Tar","Ara","Ala","Jum","Sib"], 9 | daysMin: ["Ka","Nt","Ta","Ar","Al","Ju","Si"], 10 | months: ["Zanwuyekalo","Fewuruyekalo","Marisikalo","Awirilikalo","Mɛkalo","Zuwɛnkalo","Zuluyekalo","Utikalo","Sɛtanburukalo","ɔkutɔburukalo","Nowanburukalo","Desanburukalo"], 11 | monthsShort: ["Zan","Few","Mar","Awi","Mɛ","Zuw","Zul","Uti","Sɛt","ɔku","Now","Des"], 12 | today: "Bi", 13 | monthsTitle: "Kalo", 14 | clear: "Ka jɔsi", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/hi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hindi translation for bootstrap-datepicker 3 | * Visar Uruqi 4 | */ 5 | (function () { 6 | Datepicker.locales.hi = { 7 | days: ["रविवार", "सोमवार", "मंगलवार", "बुधवार", "गुरुवार", "शुक्रवार", "शनिवार"], 8 | daysShort: ["सूर्य", "सोम", "मंगल", "बुध", "गुरु", "शुक्र", "शनि"], 9 | daysMin: ["र", "सो", "मं", "बु", "गु", "शु", "श"], 10 | months: ["जनवरी", "फ़रवरी", "मार्च", "अप्रैल", "मई", "जून", "जुलाई", "अगस्त", "सितम्बर", "अक्टूबर", "नवंबर", "दिसम्बर"], 11 | monthsShort: ["जन", "फ़रवरी", "मार्च", "अप्रैल", "मई", "जून", "जुलाई", "अगस्त", "सितं", "अक्टूबर", "नवं", "दिसम्बर"], 12 | today: "आज", 13 | monthsTitle: "महीने", 14 | clear: "साफ", 15 | weekStart: 1, 16 | format: "dd / mm / yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | (function () { 6 | Datepicker.locales.nl = { 7 | days: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"], 8 | daysShort: ["zo", "ma", "di", "wo", "do", "vr", "za"], 9 | daysMin: ["zo", "ma", "di", "wo", "do", "vr", "za"], 10 | months: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"], 11 | monthsShort: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec"], 12 | today: "Vandaag", 13 | monthsTitle: "Maanden", 14 | clear: "Wissen", 15 | weekStart: 1, 16 | format: "dd-mm-yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | * George Gooding 4 | */ 5 | (function () { 6 | Datepicker.locales.no = { 7 | days: ['søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag'], 8 | daysShort: ['søn', 'man', 'tir', 'ons', 'tor', 'fre', 'lør'], 9 | daysMin: ['sø', 'ma', 'ti', 'on', 'to', 'fr', 'lø'], 10 | months: ['januar', 'februar', 'mars', 'april', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember'], 11 | monthsShort: ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'], 12 | today: 'i dag', 13 | monthsTitle: 'Måneder', 14 | clear: 'Nullstill', 15 | weekStart: 1, 16 | format: 'dd.mm.yyyy' 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Albanian translation for bootstrap-datepicker 3 | * Tomor Pupovci 4 | */ 5 | (function () { 6 | Datepicker.locales.sq = { 7 | days: ["E Diel", "E Hënë", "E Martē", "E Mërkurë", "E Enjte", "E Premte", "E Shtunë"], 8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu"], 9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht"], 10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"], 11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"], 12 | monthsTitle: "Muaj", 13 | today: "Sot", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy", 16 | clear: "Pastro" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ta.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Tamil translation for bootstrap-datepicker 3 | * Abubacker Siddik A 4 | */ 5 | (function () { 6 | Datepicker.locales.ta = { 7 | days: ["ஞாயிறு", "திங்கள்", "செவ்வாய்", "புதன்", "வியாழன்", "வெள்ளி", "சனி"], 8 | daysShort: ["ஞாயி", "திங்", "செவ்", "புத", "வியா", "வெள்", "சனி"], 9 | daysMin: ["ஞா", "தி", "செ", "பு", "வி", "வெ", "ச"], 10 | months: ["ஜனவரி", "பிப்ரவரி", "மார்ச்", "ஏப்ரல்", "மே", "ஜூன்", "ஜூலை", "ஆகஸ்டு", "செப்டம்பர்", "அக்டோபர்", "நவம்பர்", "டிசம்பர்"], 11 | monthsShort: ["ஜன", "பிப்", "மார்", "ஏப்", "மே", "ஜூன்", "ஜூலை", "ஆக", "செப்", "அக்", "நவ", "டிச"], 12 | today: "இன்று", 13 | monthsTitle: "மாதங்கள்", 14 | clear: "நீக்கு", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | (function () { 6 | Datepicker.locales.ca = { 7 | days: ["diumenge", "dilluns", "dimarts", "dimecres", "dijous", "divendres", "dissabte"], 8 | daysShort: ["dg.", "dl.", "dt.", "dc.", "dj.", "dv.", "ds."], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds"], 10 | months: ["gener", "febrer", "març", "abril", "maig", "juny", "juliol", "agost", "setembre", "octubre", "novembre", "desembre"], 11 | monthsShort: ["gen.", "febr.", "març", "abr.", "maig", "juny", "jul.", "ag.", "set.", "oct.", "nov.", "des."], 12 | today: "Avui", 13 | monthsTitle: "Mesos", 14 | clear: "Esborra", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Italian translation for bootstrap-datepicker 3 | * Enrico Rubboli 4 | */ 5 | (function () { 6 | Datepicker.locales.it = { 7 | days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"], 9 | daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa"], 10 | months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 12 | today: "Oggi", 13 | monthsTitle: "Mesi", 14 | clear: "Cancella", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation for bootstrap-datepicker 3 | * Victor Taranenko 4 | */ 5 | (function () { 6 | Datepicker.locales.ru = { 7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота"], 8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб"], 9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], 11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 12 | today: "Сегодня", 13 | clear: "Очистить", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1, 16 | monthsTitle: 'Месяцы' 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovak translation for bootstrap-datepicker 3 | * Marek Lichtner 4 | * Fixes by Michal Remiš 5 | */ 6 | (function () { 7 | Datepicker.locales.sk = { 8 | days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota"], 9 | daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob"], 10 | daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pia", "So"], 11 | months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Dnes", 14 | clear: "Vymazať", 15 | weekStart: 1, 16 | format: "d.m.yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/en-CA.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Canadian English translation for bootstrap-datepicker 3 | * Mike Nacey 4 | */ 5 | (function () { 6 | Datepicker.locales['en-CA'] = { 7 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 8 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 9 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 10 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Today", 13 | monthsTitle: "Months", 14 | clear: "Clear", 15 | weekStart: 0, 16 | format: "yyyy-mm-dd" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/hy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Armenian translation for bootstrap-datepicker 3 | * Hayk Chamyan 4 | */ 5 | (function () { 6 | Datepicker.locales.hy = { 7 | days: ["Կիրակի", "Երկուշաբթի", "Երեքշաբթի", "Չորեքշաբթի", "Հինգշաբթի", "Ուրբաթ", "Շաբաթ"], 8 | daysShort: ["Կիր", "Երկ", "Երե", "Չոր", "Հին", "Ուրբ", "Շաբ"], 9 | daysMin: ["Կի", "Եկ", "Եք", "Չո", "Հի", "Ու", "Շա"], 10 | months: ["Հունվար", "Փետրվար", "Մարտ", "Ապրիլ", "Մայիս", "Հունիս", "Հուլիս", "Օգոստոս", "Սեպտեմբեր", "Հոկտեմբեր", "Նոյեմբեր", "Դեկտեմբեր"], 11 | monthsShort: ["Հնվ", "Փետ", "Մար", "Ապր", "Մայ", "Հուն", "Հուլ", "Օգս", "Սեպ", "Հոկ", "Նոյ", "Դեկ"], 12 | today: "Այսօր", 13 | clear: "Ջնջել", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1, 16 | monthsTitle: 'Ամիսնէր' 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/republic-of-poland.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/republic-of-poland.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/en-GB.js: -------------------------------------------------------------------------------- 1 | /** 2 | * British English translation for bootstrap-datepicker 3 | * Xavier Dutreilh 4 | */ 5 | (function () { 6 | Datepicker.locales['en-GB'] = { 7 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 8 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 9 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 10 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Today", 13 | monthsTitle: "Months", 14 | clear: "Clear", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/eu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Basque translation for bootstrap-datepicker 3 | * Arkaitz Etxeberria 4 | */ 5 | (function () { 6 | Datepicker.locales.eu = { 7 | days: ['Igandea', 'Astelehena', 'Asteartea', 'Asteazkena', 'Osteguna', 'Ostirala', 'Larunbata'], 8 | daysShort: ['Ig', 'Al', 'Ar', 'Az', 'Og', 'Ol', 'Lr'], 9 | daysMin: ['Ig', 'Al', 'Ar', 'Az', 'Og', 'Ol', 'Lr'], 10 | months: ['Urtarrila', 'Otsaila', 'Martxoa', 'Apirila', 'Maiatza', 'Ekaina', 'Uztaila', 'Abuztua', 'Iraila', 'Urria', 'Azaroa', 'Abendua'], 11 | monthsShort: ['Urt', 'Ots', 'Mar', 'Api', 'Mai', 'Eka', 'Uzt', 'Abu', 'Ira', 'Urr', 'Aza', 'Abe'], 12 | today: "Gaur", 13 | monthsTitle: "Hilabeteak", 14 | clear: "Ezabatu", 15 | weekStart: 1, 16 | format: "yyyy/mm/dd" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * French translation for bootstrap-datepicker 3 | * Nico Mollet 4 | */ 5 | (function () { 6 | Datepicker.locales.fr = { 7 | days: ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"], 8 | daysShort: ["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."], 9 | daysMin: ["d", "l", "ma", "me", "j", "v", "s"], 10 | months: ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"], 11 | monthsShort: ["janv.", "févr.", "mars", "avril", "mai", "juin", "juil.", "août", "sept.", "oct.", "nov.", "déc."], 12 | today: "Aujourd'hui", 13 | monthsTitle: "Mois", 14 | clear: "Effacer", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/uz-latn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Uzbek latin translation for bootstrap-datepicker 3 | * Kakhramonov Javlonbek 4 | */ 5 | (function () { 6 | Datepicker.locales['uz-latn'] = { 7 | days: ["Yakshanba", "Dushanba", "Seshanba", "Chorshanba", "Payshanba", "Juma", "Shanba"], 8 | daysShort: ["Yak", "Du", "Se", "Chor", "Pay", "Ju", "Sha"], 9 | daysMin: ["Ya", "Du", "Se", "Cho", "Pa", "Ju", "Sha"], 10 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "Iyun", "Iyul", "Avgust", "Sentabr", "Oktabr", "Noyabr", "Dekabr"], 11 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "Iyn", "Iyl", "Avg", "Sen", "Okt", "Noy", "Dek"], 12 | today: "Bugun", 13 | clear: "O'chirish", 14 | format: "dd.mm.yyyy", 15 | weekStart: 1, 16 | monthsTitle: 'Oylar' 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/en-AU.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Australian English translation for bootstrap-datepicker 3 | * Steve Chapman 4 | */ 5 | (function () { 6 | Datepicker.locales['en-AU'] = { 7 | days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], 8 | daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 9 | daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], 10 | months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Today", 13 | monthsTitle: "Months", 14 | clear: "Clear", 15 | weekStart: 1, 16 | format: "d/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/nl-BE.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Belgium-Dutch translation for bootstrap-datepicker 3 | * Julien Poulin 4 | */ 5 | (function () { 6 | Datepicker.locales['nl-BE'] = { 7 | days: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"], 8 | daysShort: ["zo", "ma", "di", "wo", "do", "vr", "za"], 9 | daysMin: ["zo", "ma", "di", "wo", "do", "vr", "za"], 10 | months: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"], 11 | monthsShort: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec"], 12 | today: "Vandaag", 13 | monthsTitle: "Maanden", 14 | clear: "Leegmaken", 15 | weekStart: 1, 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_close.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * = Close 3 | */ 4 | 5 | .close { 6 | @if $enable-transitions { 7 | transition: $transition-base; 8 | } 9 | &>span:not(.sr-only) { 10 | display: block; 11 | height: 1.25rem; 12 | width: 1.25rem; 13 | background-color: $close-bg; 14 | color: $close-color; 15 | line-height: 17px; 16 | border-radius: 50%; 17 | font-size: 1.25rem; 18 | @if $enable-transitions { 19 | transition: $transition-base; 20 | } 21 | } 22 | 23 | &:hover, 24 | &:focus { 25 | background-color: $close-hover-bg; 26 | color: $close-hover-color; 27 | outline: none; 28 | 29 | span:not(.sr-only) { 30 | background-color: $close-hover-bg; 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Finnish translation for bootstrap-datepicker 3 | * Jaakko Salonen 4 | */ 5 | (function () { 6 | Datepicker.locales.fi = { 7 | days: ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai"], 8 | daysShort: ["sun", "maa", "tii", "kes", "tor", "per", "lau"], 9 | daysMin: ["su", "ma", "ti", "ke", "to", "pe", "la"], 10 | months: ["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kesäkuu", "heinäkuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"], 11 | monthsShort: ["tammi", "helmi", "maalis", "huhti", "touko", "kesä", "heinä", "elo", "syys", "loka", "marras", "joulu"], 12 | today: "tänään", 13 | clear: "Tyhjennä", 14 | weekStart: 1, 15 | format: "d.m.yyyy" 16 | }; 17 | }()); 18 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bahasa translation for bootstrap-datepicker 3 | * Azwar Akbar 4 | * Ardeman 5 | */ 6 | (function () { 7 | Datepicker.locales.id = { 8 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu"], 9 | daysShort: ["Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"], 10 | daysMin: ["Mg", "Sn", "Sl", "Rb", "Km", "Jm", "Sb"], 11 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agt", "Sep", "Okt", "Nov", "Des"], 13 | today: "Hari Ini", 14 | monthsTitle: "Bulan", 15 | clear: "Kosongkan", 16 | weekStart: 0, 17 | format: "dd-mm-yyyy" 18 | }; 19 | }()); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/mr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Marathi translation for bootstrap-datepicker 3 | * Sushant Pimple 4 | */ 5 | (function () { 6 | Datepicker.locales.mr = { 7 | days: ["रविवार", "सोमवार", "मंगळवार", "बुधवार", "गुरुवार", "शुक्रवार", "शनिवार"], 8 | daysShort: ["रवि", "सोम", "मंगळ", "बुध", "गुरु", "शुक्र", "शनि"], 9 | daysMin: ["र", "सो", "मं", "बु", "गु", "शु", "श"], 10 | months: ["जानेवारी", "फेब्रुवारी", "मार्च", "एप्रिल", "मे", "जून", "जुलै", "ऑगस्ट", "सप्टेंबर", "ऑक्टोबर", "नोव्हेंबर", "डिसेंबर"], 11 | monthsShort: ["जाने.", "फेब्रु.", "मार्च", "एप्रिल", "मे", "जून", "जुलै", "ऑगस्ट", "सप्टें.", "ऑक्टो.", "नोव्हें.", "डिसें."], 12 | today: "आज", 13 | monthsTitle: "महीने", 14 | clear: "हटवा", 15 | weekStart: 1, 16 | format: "dd / mm / yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/si.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sinhala translation for bootstrap-datepicker 3 | * Chanaka Fernando 4 | */ 5 | (function () { 6 | Datepicker.locales.si = { 7 | days: ["ඉරිදා", "සඳුදා", "අඟහරුවාදා", "බදාදා", "බ්‍රහස්පතින්දා", "සිකුරාදා", "සෙනසුරාදා"], 8 | daysShort: ["ඉරි", "සඳු", "අඟ", "බදා", "බ්‍රහ", "සිකු", "සෙන"], 9 | daysMin: ["ඉ", "ස", "අ", "බ", "බ්‍ර", "සි", "සෙ"], 10 | months: ["ජනවාරි", "පෙබරවාරි", "මාර්තු", "අප්‍රේල්", "මැයි", "ජුනි", "ජූලි", "අගෝස්තු", "සැප්තැම්බර්", "ඔක්තෝබර්", "නොවැම්බර්", "දෙසැම්බර්"], 11 | monthsShort: ["ජන", "පෙබ", "මාර්", "අප්‍රේ", "මැයි", "ජුනි", "ජූලි", "අගෝ", "සැප්", "ඔක්", "නොවැ", "දෙසැ"], 12 | today: "අද", 13 | monthsTitle: "මාස", 14 | clear: "මකන්න", 15 | weekStart: 0, 16 | format: "yyyy-mm-dd" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/modifiers/popperOffsets.js: -------------------------------------------------------------------------------- 1 | import computeOffsets from "../utils/computeOffsets.js"; 2 | 3 | function popperOffsets(_ref) { 4 | var state = _ref.state, 5 | name = _ref.name; 6 | // Offsets are the actual position the popper needs to have to be 7 | // properly positioned near its reference element 8 | // This is the most basic placement, and will be adjusted by 9 | // the modifiers in the next step 10 | state.modifiersData[name] = computeOffsets({ 11 | reference: state.rects.reference, 12 | element: state.rects.popper, 13 | strategy: 'absolute', 14 | placement: state.placement 15 | }); 16 | } // eslint-disable-next-line import/no-unused-modules 17 | 18 | 19 | export default { 20 | name: 'popperOffsets', 21 | enabled: true, 22 | phase: 'read', 23 | fn: popperOffsets, 24 | data: {} 25 | }; -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Portuguese translation for bootstrap-datepicker 3 | * Original code: Cauan Cabral 4 | * Tiago Melo 5 | */ 6 | (function () { 7 | Datepicker.locales.pt = { 8 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"], 9 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"], 10 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa"], 11 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 12 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 13 | today: "Hoje", 14 | monthsTitle: "Meses", 15 | clear: "Limpar", 16 | format: "dd/mm/yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Czech translation for bootstrap-datepicker 3 | * Matěj Koubík 4 | * Fixes by Michal Remiš 5 | */ 6 | (function () { 7 | Datepicker.locales.cs = { 8 | days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"], 9 | daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob"], 10 | daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"], 11 | months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 12 | monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"], 13 | today: "Dnes", 14 | clear: "Vymazat", 15 | monthsTitle: "Měsíc", 16 | weekStart: 1, 17 | format: "dd.mm.yyyy" 18 | }; 19 | }()); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Traditional Chinese translation for bootstrap-datepicker 3 | * Rung-Sheng Jang 4 | * FrankWu Fix more appropriate use of Traditional Chinese habit 5 | */ 6 | (function () { 7 | Datepicker.locales['zh-TW'] = { 8 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"], 9 | daysShort: ["週日", "週一", "週二", "週三", "週四", "週五", "週六"], 10 | daysMin: ["日", "一", "二", "三", "四", "五", "六"], 11 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 13 | today: "今天", 14 | monthsTitle: "月份", 15 | format: "yyyy/mm/dd", 16 | weekStart: 0, 17 | titleFormat: "y年mm月", 18 | clear: "清除" 19 | }; 20 | }()); 21 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/ar-DZ.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic-Algeria translation for bootstrap-datepicker 3 | * Rabah Saadi 4 | */ 5 | (function () { 6 | Datepicker.locales['ar-DZ'] = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"], 11 | monthsShort: ["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true, 14 | monthsTitle: "أشهر", 15 | clear: "إزالة", 16 | format: "yyyy/mm/dd", 17 | weekStart: 0 18 | }; 19 | }()); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/tg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Tajik (cyrillic) translation for bootstrap-datepicker 3 | * Bakhtiyor Bahritidinov 4 | * Orif N. Jr. 5 | */ 6 | (function () { 7 | Datepicker.locales.tg = { 8 | days: ["Якшанбе", "Душанбе", "Сешанбе", "Чоршанбе", "Панҷшанбе", "Ҷумъа", "Шанбе"], 9 | daysShort: ["Яшб", "Дшб", "Сшб", "Чшб", "Пшб", "Ҷум", "Шнб"], 10 | daysMin: ["Яш", "Дш", "Сш", "Чш", "Пш", "Ҷм", "Шб"], 11 | months: ["Январ", "Феврал", "Март", "Апрел", "Май", "Июн", "Июл", "Август", "Сентябр", "Октябр", "Ноябр", "Декабр"], 12 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 13 | today: "Имрӯз", 14 | monthsTitle: "Моҳҳо", 15 | clear: "Тоза намудан", 16 | weekStart: 1, 17 | format: "dd.mm.yyyy" 18 | }; 19 | }()); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/getParentNode.js: -------------------------------------------------------------------------------- 1 | import getNodeName from "./getNodeName.js"; 2 | import getDocumentElement from "./getDocumentElement.js"; 3 | import { isShadowRoot } from "./instanceOf.js"; 4 | export default function getParentNode(element) { 5 | if (getNodeName(element) === 'html') { 6 | return element; 7 | } 8 | 9 | return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle 10 | // $FlowFixMe[incompatible-return] 11 | // $FlowFixMe[prop-missing] 12 | element.assignedSlot || // step into the shadow DOM of the parent of a slotted node 13 | element.parentNode || ( // DOM Element detected 14 | isShadowRoot(element) ? element.host : null) || // ShadowRoot detected 15 | // $FlowFixMe[incompatible-call]: HTMLElement is a Node 16 | getDocumentElement(element) // fallback 17 | 18 | ); 19 | } -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/lt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Lithuanian translation for bootstrap-datepicker 3 | * Šarūnas Gliebus 4 | */ 5 | 6 | (function () { 7 | Datepicker.locales.lt = { 8 | days: ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis"], 9 | daysShort: ["S", "Pr", "A", "T", "K", "Pn", "Š"], 10 | daysMin: ["Sk", "Pr", "An", "Tr", "Ke", "Pn", "Št"], 11 | months: ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"], 12 | monthsShort: ["Sau", "Vas", "Kov", "Bal", "Geg", "Bir", "Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru"], 13 | today: "Šiandien", 14 | monthsTitle: "Mėnesiai", 15 | clear: "Išvalyti", 16 | weekStart: 1, 17 | format: "yyyy-mm-dd" 18 | }; 19 | }()); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation for bootstrap-datepicker 3 | * Christian Pedersen 4 | * Ivan Mylyanyk 5 | */ 6 | (function () { 7 | Datepicker.locales.da = { 8 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag"], 9 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør"], 10 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø"], 11 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "I Dag", 14 | weekStart: 1, 15 | clear: "Nulstil", 16 | format: "dd/mm/yyyy", 17 | monthsTitle: "Måneder" 18 | }; 19 | }()); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/et.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Estonian translation for bootstrap-datepicker 3 | * Ando Roots 4 | * Fixes by Illimar Tambek < 5 | */ 6 | (function () { 7 | Datepicker.locales.et = { 8 | days: ["Pühapäev", "Esmaspäev", "Teisipäev", "Kolmapäev", "Neljapäev", "Reede", "Laupäev"], 9 | daysShort: ["Pühap", "Esmasp", "Teisip", "Kolmap", "Neljap", "Reede", "Laup"], 10 | daysMin: ["P", "E", "T", "K", "N", "R", "L"], 11 | months: ["Jaanuar", "Veebruar", "Märts", "Aprill", "Mai", "Juuni", "Juuli", "August", "September", "Oktoober", "November", "Detsember"], 12 | monthsShort: ["Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni", "Juuli", "Aug", "Sept", "Okt", "Nov", "Dets"], 13 | today: "Täna", 14 | clear: "Tühjenda", 15 | weekStart: 1, 16 | format: "dd.mm.yyyy" 17 | }; 18 | }()); 19 | -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/DataController.php: -------------------------------------------------------------------------------- 1 | get(); 15 | return datatables()->of($centrepoint) 16 | ->addColumn('action','backend.CentrePoint.action') 17 | ->addIndexColumn() 18 | ->rawColumns(['action']) 19 | ->toJson(); 20 | } 21 | 22 | public function spot() 23 | { 24 | $spot = Spot::latest()->get(); 25 | return datatables()->of($spot) 26 | ->addColumn('action','backend.Spot.action') 27 | ->addIndexColumn() 28 | ->rawColumns(['action']) 29 | ->toJson(); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/km.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Khmer translation for bootstrap-datepicker 3 | * This is the Updated Version of: https: //github.com/uxsolutions/bootstrap-datepicker/blob/71308d42cce9524284c50c6fac50422d1790ac0f/js/locales/bootstrap-datepicker.kh.js 4 | */ 5 | (function () { 6 | Datepicker.locales.km = { 7 | days: ["អាទិត្យ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រហស្បតិ៍", "សុក្រ", "សៅរ៍"], 8 | daysShort: ["អា.ទិ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រ.ហ", "សុក្រ", "សៅរ៍"], 9 | daysMin: ["អា.ទិ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រ.ហ", "សុក្រ", "សៅរ៍"], 10 | months: ["មករា", "កុម្ភះ", "មិនា", "មេសា", "ឧសភា", "មិថុនា", "កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ"], 11 | monthsShort: ["មករា", "កុម្ភះ", "មិនា", "មេសា", "ឧសភា", "មិថុនា", "កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ"], 12 | today: "ថ្ងៃនេះ", 13 | clear: "សំអាត" 14 | }; 15 | }()); 16 | -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- 1 | check()) { 24 | return redirect(RouteServiceProvider::HOME); 25 | } 26 | } 27 | 28 | return $next($request); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /database/migrations/2023_07_10_081935_create_spots_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('name'); 17 | $table->string('slug'); 18 | $table->string('coordinates'); 19 | $table->longText('description'); 20 | $table->string('image')->nullable(); 21 | $table->timestamps(); 22 | }); 23 | } 24 | 25 | /** 26 | * Reverse the migrations. 27 | */ 28 | public function down(): void 29 | { 30 | Schema::dropIfExists('spots'); 31 | } 32 | }; 33 | -------------------------------------------------------------------------------- /public/volt/src/partials/_analytics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/@popperjs/core/dist/esm/dom-utils/getLayoutRect.js: -------------------------------------------------------------------------------- 1 | import getBoundingClientRect from "./getBoundingClientRect.js"; // Returns the layout rect of an element relative to its offsetParent. Layout 2 | // means it doesn't take into account transforms. 3 | 4 | export default function getLayoutRect(element) { 5 | var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed. 6 | // Fixes https://github.com/popperjs/popper-core/issues/1223 7 | 8 | var width = element.offsetWidth; 9 | var height = element.offsetHeight; 10 | 11 | if (Math.abs(clientRect.width - width) <= 1) { 12 | width = clientRect.width; 13 | } 14 | 15 | if (Math.abs(clientRect.height - height) <= 1) { 16 | height = clientRect.height; 17 | } 18 | 19 | return { 20 | x: element.offsetLeft, 21 | y: element.offsetTop, 22 | width: width, 23 | height: height 24 | }; 25 | } -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('name'); 17 | $table->string('email')->unique(); 18 | $table->timestamp('email_verified_at')->nullable(); 19 | $table->string('password'); 20 | $table->rememberToken(); 21 | $table->timestamps(); 22 | }); 23 | } 24 | 25 | /** 26 | * Reverse the migrations. 27 | */ 28 | public function down(): void 29 | { 30 | Schema::dropIfExists('users'); 31 | } 32 | }; 33 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/bn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bengali (Bangla) translation for bootstrap-datepicker 3 | * Karim Khan 4 | * Orif N. Jr. 5 | */ 6 | (function () { 7 | Datepicker.locales.bn = { 8 | days: ["রবিবার","সোমবার","মঙ্গলবার","বুধবার","বৃহস্পতিবার","শুক্রবার","শনিবার"], 9 | daysShort: ["রবিবার","সোমবার","মঙ্গলবার","বুধবার","বৃহস্পতিবার","শুক্রবার","শনিবার"], 10 | daysMin: ["রবি","সোম","মঙ্গল","বুধ","বৃহস্পতি","শুক্র","শনি"], 11 | months: ["জানুয়ারী","ফেব্রুয়ারি","মার্চ","এপ্রিল","মে","জুন","জুলাই","অগাস্ট","সেপ্টেম্বর","অক্টোবর","নভেম্বর","ডিসেম্বর"], 12 | monthsShort: ["জানুয়ারী","ফেব্রুয়ারি","মার্চ","এপ্রিল","মে","জুন","জুলাই","অগাস্ট","সেপ্টেম্বর","অক্টোবর","নভেম্বর","ডিসেম্বর"], 13 | today: "আজ", 14 | monthsTitle: "মাস", 15 | clear: "পরিষ্কার", 16 | weekStart: 0, 17 | format: "mm/dd/yyyy" 18 | }; 19 | }()); 20 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/it-CH.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Italian (Switzerland) translation for bootstrap-datepicker 3 | * Christoph Jossi 4 | * Based on 5 | * Italian translation for bootstrap-datepicker 6 | * Enrico Rubboli 7 | */ 8 | (function () { 9 | Datepicker.locales['it-CH'] = { 10 | days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato"], 11 | daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"], 12 | daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa"], 13 | months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 14 | monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 15 | today: "Oggi", 16 | clear: "Cancella", 17 | weekStart: 1, 18 | format: "dd.mm.yyyy" 19 | }; 20 | }()); 21 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/vietnam.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/vietnam.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('uuid')->unique(); 17 | $table->text('connection'); 18 | $table->text('queue'); 19 | $table->longText('payload'); 20 | $table->longText('exception'); 21 | $table->timestamp('failed_at')->useCurrent(); 22 | }); 23 | } 24 | 25 | /** 26 | * Reverse the migrations. 27 | */ 28 | public function down(): void 29 | { 30 | Schema::dropIfExists('failed_jobs'); 31 | } 32 | }; 33 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/brand/dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | 13 | 14 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/brand/dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | 13 | 14 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/vanillajs-datepicker/dist/js/locales/fr-CH.js: -------------------------------------------------------------------------------- 1 | /** 2 | * French (Switzerland) translation for bootstrap-datepicker 3 | * Christoph Jossi 4 | * Based on 5 | * French translation for bootstrap-datepicker 6 | * Nico Mollet 7 | */ 8 | (function () { 9 | Datepicker.locales['fr-CH'] = { 10 | days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"], 11 | daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"], 12 | daysMin: ["D", "L", "Ma", "Me", "J", "V", "S"], 13 | months: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], 14 | monthsShort: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jui", "Jul", "Aou", "Sep", "Oct", "Nov", "Déc"], 15 | today: "Aujourd'hui", 16 | monthsTitle: "Mois", 17 | clear: "Effacer", 18 | weekStart: 1, 19 | format: "dd.mm.yyyy" 20 | }; 21 | }()); 22 | -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- 1 | ['api/*', 'sanctum/csrf-cookie'], 19 | 20 | 'allowed_methods' => ['*'], 21 | 22 | 'allowed_origins' => ['*'], 23 | 24 | 'allowed_origins_patterns' => [], 25 | 26 | 'allowed_headers' => ['*'], 27 | 28 | 'exposed_headers' => [], 29 | 30 | 'max_age' => 0, 31 | 32 | 'supports_credentials' => false, 33 | 34 | ]; 35 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/switzerland.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/switzerland.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/france.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/ireland.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/italy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/france.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/ireland.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/italy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/luxembourg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/netherlands.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/netherlands.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/latvia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/nigeria.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/peru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/latvia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/nigeria.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/peru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/components/_tooltip.scss: -------------------------------------------------------------------------------- 1 | // Wrapper for the tooltip content 2 | 3 | .tooltip-inner { 4 | @include box-shadow($box-shadow); 5 | } 6 | 7 | .chartist-tooltip { 8 | position: absolute; 9 | display: inline-block; 10 | opacity: 0; 11 | min-width: 5em; 12 | padding: .5em; 13 | background: $gray-100; 14 | border: 1px solid $gray-100; 15 | border-radius: $border-radius; 16 | color: $dark; 17 | font-weight: $font-weight-bold; 18 | text-align: center; 19 | pointer-events: none; 20 | z-index: 1; 21 | transition: $transition-base; 22 | } 23 | 24 | .chartist-tooltip:before { 25 | content: ""; 26 | position: absolute; 27 | top: 100%; 28 | left: 50%; 29 | width: 0; 30 | height: 0; 31 | margin-left: -15px; 32 | border: 15px solid transparent; 33 | border-top-color: $gray-100; 34 | } 35 | 36 | .chartist-tooltip.tooltip-show { 37 | opacity: 1; 38 | } 39 | 40 | .ct-area, .ct-line { 41 | pointer-events: none; 42 | } 43 | -------------------------------------------------------------------------------- /public/volt/html&css/vendor/chartist-plugin-tooltips/dist/chartist-plugin-tooltip.css: -------------------------------------------------------------------------------- 1 | .chartist-tooltip { 2 | position: absolute; 3 | display: inline-block; 4 | opacity: 0; 5 | min-width: 5em; 6 | padding: .5em; 7 | background: #F4C63D; 8 | color: #453D3F; 9 | font-family: Oxygen,Helvetica,Arial,sans-serif; 10 | font-weight: 700; 11 | text-align: center; 12 | pointer-events: none; 13 | z-index: 1; 14 | -webkit-transition: opacity .2s linear; 15 | -moz-transition: opacity .2s linear; 16 | -o-transition: opacity .2s linear; 17 | transition: opacity .2s linear; } 18 | .chartist-tooltip:before { 19 | content: ""; 20 | position: absolute; 21 | top: 100%; 22 | left: 50%; 23 | width: 0; 24 | height: 0; 25 | margin-left: -15px; 26 | border: 15px solid transparent; 27 | border-top-color: #F4C63D; } 28 | .chartist-tooltip.tooltip-show { 29 | opacity: 1; } 30 | 31 | .ct-area, .ct-line { 32 | pointer-events: none; } 33 | 34 | /*# sourceMappingURL=chartist-plugin-tooltip.css.map */ 35 | -------------------------------------------------------------------------------- /public/volt/src/scss/volt/_components.scss: -------------------------------------------------------------------------------- 1 | @import "components/body"; 2 | @import "components/accordions"; 3 | @import "components/animations"; 4 | @import "components/alerts"; 5 | @import "components/avatars"; 6 | @import "components/badge"; 7 | @import "components/buttons"; 8 | @import "components/breadcrumb"; 9 | @import "components/card"; 10 | @import "components/carousel"; 11 | @import "components/close"; 12 | @import "components/custom-forms"; 13 | @import "components/charts"; 14 | @import "components/dropdown"; 15 | @import "components/icons"; 16 | @import "components/images"; 17 | @import "components/list-group"; 18 | @import "components/modal"; 19 | @import "components/nav"; 20 | @import "components/pagination"; 21 | @import "components/popover"; 22 | @import "components/progress"; 23 | @import "components/shapes"; 24 | @import "components/datepicker"; 25 | @import "components/steps"; 26 | @import "components/tables"; 27 | @import "components/type"; 28 | @import "components/timelines"; 29 | @import "components/tooltip"; 30 | @import "components/scrollbar"; 31 | -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->morphs('tokenable'); 17 | $table->string('name'); 18 | $table->string('token', 64)->unique(); 19 | $table->text('abilities')->nullable(); 20 | $table->timestamp('last_used_at')->nullable(); 21 | $table->timestamp('expires_at')->nullable(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | */ 29 | public function down(): void 30 | { 31 | Schema::dropIfExists('personal_access_tokens'); 32 | } 33 | }; 34 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/bahrain.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/bahrain.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/colombia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /public/volt/src/assets/img/flags/czech-republic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | > 16 | */ 17 | protected $listen = [ 18 | Registered::class => [ 19 | SendEmailVerificationNotification::class, 20 | ], 21 | ]; 22 | 23 | /** 24 | * Register any events for your application. 25 | */ 26 | public function boot(): void 27 | { 28 | // 29 | } 30 | 31 | /** 32 | * Determine if events and listeners should be automatically discovered. 33 | */ 34 | public function shouldDiscoverEvents(): bool 35 | { 36 | return false; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/colombia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /public/volt/html&css/assets/img/flags/czech-republic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/volt/LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2021 Themesberg (Crafty Dwarf LLC) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------