├── public ├── favicon.ico ├── robots.txt ├── js │ └── main.js ├── mix-manifest.json ├── asset │ ├── img │ │ ├── 404.png │ │ ├── 500.png │ │ ├── bg1.jpg │ │ ├── bg2.jpg │ │ ├── bg3.jpg │ │ ├── bg4.jpg │ │ ├── ss.png │ │ ├── g3986.png │ │ ├── avatar.jpg │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── controls.png │ │ ├── left-bg.png │ │ ├── left-bg2.png │ │ ├── logomi.png │ │ ├── demo-video.png │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-modern.png │ │ ├── sprite-skin-nice.png │ │ ├── sprite-skin-simple.png │ │ └── bigplay.svg │ ├── media │ │ ├── demo.mp3 │ │ └── demo.mp4 │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── Simple-Line-Icons.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ └── plugins │ │ │ ├── flot │ │ │ ├── examples │ │ │ │ ├── ajax │ │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ │ └── data-eu-gdp-growth.json │ │ │ │ ├── .DS_Store │ │ │ │ ├── background.png │ │ │ │ ├── navigate │ │ │ │ │ ├── arrow-up.gif │ │ │ │ │ ├── arrow-down.gif │ │ │ │ │ ├── arrow-left.gif │ │ │ │ │ └── arrow-right.gif │ │ │ │ ├── axes-time-zones │ │ │ │ │ └── tz │ │ │ │ │ │ ├── southamerica │ │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ │ ├── pacificnew │ │ │ │ │ │ └── systemv │ │ │ │ ├── image │ │ │ │ │ └── hs-2004-27-a-large-web.jpg │ │ │ │ ├── shared │ │ │ │ │ └── jquery-ui │ │ │ │ │ │ └── jquery-ui.min.css │ │ │ │ ├── categories │ │ │ │ │ └── index.html │ │ │ │ └── basic-usage │ │ │ │ │ └── index.html │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.flot.symbol.min.js │ │ │ └── jquery.flot.threshold.min.js │ │ │ ├── flashmediaelement.swf │ │ │ ├── silverlightmediaelement.xap │ │ │ └── maps │ │ │ └── continents │ │ │ └── readme.txt │ └── css │ │ └── plugins │ │ ├── icheck │ │ └── skins │ │ │ ├── flat │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── flat.png │ │ │ ├── grey.png │ │ │ ├── pink.png │ │ │ ├── red.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── flat@2x.png │ │ │ ├── green.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.png │ │ │ ├── green@2x.png │ │ │ ├── orange@2x.png │ │ │ ├── purple@2x.png │ │ │ ├── yellow@2x.png │ │ │ ├── flat.css │ │ │ ├── red.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── grey.css │ │ │ ├── pink.css │ │ │ ├── green.css │ │ │ ├── orange.css │ │ │ ├── purple.css │ │ │ └── yellow.css │ │ │ ├── line │ │ │ ├── line.png │ │ │ └── line@2x.png │ │ │ ├── minimal │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── grey.png │ │ │ ├── pink.png │ │ │ ├── red.png │ │ │ ├── green.png │ │ │ ├── orange.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── green@2x.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.png │ │ │ ├── orange@2x.png │ │ │ ├── pink@2x.png │ │ │ ├── purple@2x.png │ │ │ ├── yellow@2x.png │ │ │ ├── minimal@2x.png │ │ │ ├── minimal.css │ │ │ ├── red.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── grey.css │ │ │ ├── pink.css │ │ │ ├── green.css │ │ │ ├── orange.css │ │ │ ├── purple.css │ │ │ └── yellow.css │ │ │ ├── square │ │ │ ├── aero.png │ │ │ ├── blue.png │ │ │ ├── green.png │ │ │ ├── grey.png │ │ │ ├── pink.png │ │ │ ├── red.png │ │ │ ├── aero@2x.png │ │ │ ├── blue@2x.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.png │ │ │ ├── red@2x.png │ │ │ ├── square.png │ │ │ ├── yellow.png │ │ │ ├── green@2x.png │ │ │ ├── orange@2x.png │ │ │ ├── purple@2x.png │ │ │ ├── square@2x.png │ │ │ ├── yellow@2x.png │ │ │ ├── square.css │ │ │ ├── red.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── grey.css │ │ │ ├── pink.css │ │ │ ├── green.css │ │ │ ├── orange.css │ │ │ ├── purple.css │ │ │ └── yellow.css │ │ │ ├── futurico │ │ │ ├── futurico.png │ │ │ ├── futurico@2x.png │ │ │ └── futurico.css │ │ │ ├── polaris │ │ │ ├── polaris.png │ │ │ ├── polaris@2x.png │ │ │ └── polaris.css │ │ │ └── all.css │ │ └── typebase.css ├── images │ └── icons │ │ └── favicon.ico ├── fonts │ ├── OpenSans │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-Regular.otf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-SemiBold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-SemiBoldItalic.ttf │ │ └── OpenSans-ExtraBoldItalic.ttf │ ├── poppins │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-Thin.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-ThinItalic.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ └── Poppins-SemiBoldItalic.ttf │ └── font-awesome-4.7.0 │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ ├── screen-reader.less │ │ ├── fixed-width.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── core.less │ │ ├── stacked.less │ │ ├── font-awesome.less │ │ ├── bordered-pulled.less │ │ ├── rotated-flipped.less │ │ ├── path.less │ │ ├── animated.less │ │ └── mixins.less │ │ ├── scss │ │ ├── _fixed-width.scss │ │ ├── _screen-reader.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _core.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _bordered-pulled.scss │ │ ├── _rotated-flipped.scss │ │ ├── _path.scss │ │ ├── _animated.scss │ │ └── _mixins.scss │ │ └── HELP-US-OUT.txt ├── uploads │ └── convertcsv.csv ├── .htaccess └── web.config ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── database ├── .gitignore ├── seeds │ └── DatabaseSeeder.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ └── 2014_10_12_000000_create_users_table.php └── factories │ └── UserFactory.php ├── dokumentasi.docx ├── resources ├── views │ ├── home2.blade.php │ ├── home.blade.php │ ├── admin │ │ └── index.blade.php │ ├── operator │ │ └── index.blade.php │ ├── user │ │ └── index.blade.php │ ├── auth │ │ └── verify.blade.php │ └── test.blade.php ├── sass │ ├── app.scss │ └── _variables.scss ├── js │ ├── app.js │ ├── components │ │ └── Example.js │ └── bootstrap.js └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ └── passwords.php ├── config ├── constants.php ├── cors.php ├── services.php ├── view.php ├── hashing.php └── broadcasting.php ├── .gitattributes ├── app ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── UserController.php │ │ ├── OperatorController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── ResetPasswordController.php │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── VerificationController.php │ │ │ └── LoginController.php │ │ ├── MapsInsertController.php │ │ └── UpdateMapsController.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── User.php │ │ ├── Operator.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── Authenticate.php │ │ ├── RedirectIfAuthenticated.php │ │ └── Admin.php ├── Exports │ └── LokasiExport.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── DataMaps.php ├── User.php ├── Exceptions │ └── Handler.php └── Console │ └── Kernel.php ├── samplefiles ├── data.csv └── data.geojson ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── .gitignore ├── .styleci.yml ├── .editorconfig ├── webpack.mix.js ├── routes ├── channels.php ├── api.php └── console.php ├── server.php ├── .env.example ├── phpunit.xml ├── package.json ├── artisan └── composer.json /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 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 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /dokumentasi.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/dokumentasi.docx -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | (function ($) { 3 | "use strict"; 4 | 5 | 6 | 7 | 8 | })(jQuery); -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /public/asset/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/404.png -------------------------------------------------------------------------------- /public/asset/img/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/500.png -------------------------------------------------------------------------------- /public/asset/img/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/bg1.jpg -------------------------------------------------------------------------------- /public/asset/img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/bg2.jpg -------------------------------------------------------------------------------- /public/asset/img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/bg3.jpg -------------------------------------------------------------------------------- /public/asset/img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/bg4.jpg -------------------------------------------------------------------------------- /public/asset/img/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/ss.png -------------------------------------------------------------------------------- /resources/views/home2.blade.php: -------------------------------------------------------------------------------- 1 | @extends('templatebaru') 2 | 3 | @section('content') 4 | ini home 5 | @endsection 6 | -------------------------------------------------------------------------------- /config/constants.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'APIKEY' => '' 5 | ] 6 | ]; 7 | -------------------------------------------------------------------------------- /public/asset/img/g3986.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/g3986.png -------------------------------------------------------------------------------- /public/asset/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/avatar.jpg -------------------------------------------------------------------------------- /public/asset/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/avatar2.png -------------------------------------------------------------------------------- /public/asset/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/avatar3.png -------------------------------------------------------------------------------- /public/asset/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/controls.png -------------------------------------------------------------------------------- /public/asset/img/left-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/left-bg.png -------------------------------------------------------------------------------- /public/asset/img/left-bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/left-bg2.png -------------------------------------------------------------------------------- /public/asset/img/logomi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/logomi.png -------------------------------------------------------------------------------- /public/asset/media/demo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/media/demo.mp3 -------------------------------------------------------------------------------- /public/asset/media/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/media/demo.mp4 -------------------------------------------------------------------------------- /public/asset/img/demo-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/demo-video.png -------------------------------------------------------------------------------- /public/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/images/icons/favicon.ico -------------------------------------------------------------------------------- /public/asset/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /public/asset/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /public/asset/img/sprite-skin-modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/sprite-skin-modern.png -------------------------------------------------------------------------------- /public/asset/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /public/asset/img/sprite-skin-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/img/sprite-skin-simple.png -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /public/asset/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /public/asset/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /public/asset/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /public/asset/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /public/asset/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/asset/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/asset/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/asset/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-Regular.otf -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /public/asset/js/plugins/flashmediaelement.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/js/plugins/flashmediaelement.swf -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/js/plugins/flot/examples/.DS_Store -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/aero.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/blue.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/flat.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/grey.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/pink.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/line/line.png -------------------------------------------------------------------------------- /public/asset/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/asset/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/asset/js/plugins/silverlightmediaelement.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/js/plugins/silverlightmediaelement.xap -------------------------------------------------------------------------------- /public/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/green.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/orange.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/purple.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/red.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/aero.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/blue.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/green.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/grey.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/pink.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/red.png -------------------------------------------------------------------------------- /public/asset/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/asset/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/js/plugins/flot/examples/background.png -------------------------------------------------------------------------------- /public/asset/js/plugins/maps/continents/readme.txt: -------------------------------------------------------------------------------- 1 | These maps are just extracted from the world map and re-sized to same level as the world map. No extra details, or polygons added. -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/green.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/orange.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/purple.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/square.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/yellow.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/futurico/futurico.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/aero@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/blue@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/green@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/grey@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/minimal.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/orange@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/pink@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/purple@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/yellow@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/polaris/polaris.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/green@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/orange@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/purple@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/square@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/square/yellow@2x.png -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/navigate/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/js/plugins/flot/examples/navigate/arrow-up.gif -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/minimal/minimal@2x.png -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/polaris/polaris@2x.png -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/navigate/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/js/plugins/flot/examples/navigate/arrow-down.gif -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/navigate/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/js/plugins/flot/examples/navigate/arrow-left.gif -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/asset/css/plugins/icheck/skins/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/css/plugins/icheck/skins/futurico/futurico@2x.png -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/navigate/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/asset/js/plugins/flot/examples/navigate/arrow-right.gif -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousliem/WebGis-Aplication-Laravel/HEAD/public/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/Http/Controllers/AdminController.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Exports/LokasiExport.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/axes-time-zones/tz/factory: -------------------------------------------------------------------------------- 1 | #
 2 | # This file is in the public domain, so clarified as of
 3 | # 2009-05-17 by Arthur David Olson.
 4 | 
 5 | # For companies who don't want to put time zone specification in
 6 | # their installation procedures.  When users run date, they'll get the message.
 7 | # Also useful for the "comp.sources" version.
 8 | 
 9 | # Zone	NAME	GMTOFF	RULES	FORMAT
10 | Zone	Factory	0	- "Local time zone must be set--see zic manual page"
11 | 


--------------------------------------------------------------------------------
/public/fonts/font-awesome-4.7.0/less/list.less:
--------------------------------------------------------------------------------
 1 | // List Icons
 2 | // -------------------------
 3 | 
 4 | .@{fa-css-prefix}-ul {
 5 |   padding-left: 0;
 6 |   margin-left: @fa-li-width;
 7 |   list-style-type: none;
 8 |   > li { position: relative; }
 9 | }
10 | .@{fa-css-prefix}-li {
11 |   position: absolute;
12 |   left: -@fa-li-width;
13 |   width: @fa-li-width;
14 |   top: (2em / 14);
15 |   text-align: center;
16 |   &.@{fa-css-prefix}-lg {
17 |     left: (-@fa-li-width + (4em / 14));
18 |   }
19 | }
20 | 


--------------------------------------------------------------------------------
/public/fonts/font-awesome-4.7.0/scss/_list.scss:
--------------------------------------------------------------------------------
 1 | // List Icons
 2 | // -------------------------
 3 | 
 4 | .#{$fa-css-prefix}-ul {
 5 |   padding-left: 0;
 6 |   margin-left: $fa-li-width;
 7 |   list-style-type: none;
 8 |   > li { position: relative; }
 9 | }
10 | .#{$fa-css-prefix}-li {
11 |   position: absolute;
12 |   left: -$fa-li-width;
13 |   width: $fa-li-width;
14 |   top: (2em / 14);
15 |   text-align: center;
16 |   &.#{$fa-css-prefix}-lg {
17 |     left: -$fa-li-width + (4em / 14);
18 |   }
19 | }
20 | 


--------------------------------------------------------------------------------
/tests/CreatesApplication.php:
--------------------------------------------------------------------------------
 1 | make(Kernel::class)->bootstrap();
19 | 
20 |         return $app;
21 |     }
22 | }
23 | 


--------------------------------------------------------------------------------
/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
 1 | where('nama_lokasi', $data['nama_lokasi'])->get();
17 |         if($value->count() == 0){
18 |            DB::table('lokasi')->insert($data);
19 |         }
20 |      }
21 | }
22 | 


--------------------------------------------------------------------------------
/app/Http/Middleware/Authenticate.php:
--------------------------------------------------------------------------------
 1 | expectsJson()) {
18 |             return route('login');
19 |         }
20 |     }
21 | }
22 | 


--------------------------------------------------------------------------------
/public/fonts/font-awesome-4.7.0/less/stacked.less:
--------------------------------------------------------------------------------
 1 | // Stacked Icons
 2 | // -------------------------
 3 | 
 4 | .@{fa-css-prefix}-stack {
 5 |   position: relative;
 6 |   display: inline-block;
 7 |   width: 2em;
 8 |   height: 2em;
 9 |   line-height: 2em;
10 |   vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 |   position: absolute;
14 |   left: 0;
15 |   width: 100%;
16 |   text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 | 


--------------------------------------------------------------------------------
/public/fonts/font-awesome-4.7.0/scss/_stacked.scss:
--------------------------------------------------------------------------------
 1 | // Stacked Icons
 2 | // -------------------------
 3 | 
 4 | .#{$fa-css-prefix}-stack {
 5 |   position: relative;
 6 |   display: inline-block;
 7 |   width: 2em;
 8 |   height: 2em;
 9 |   line-height: 2em;
10 |   vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 |   position: absolute;
14 |   left: 0;
15 |   width: 100%;
16 |   text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 | 


--------------------------------------------------------------------------------
/webpack.mix.js:
--------------------------------------------------------------------------------
 1 | const mix = require('laravel-mix');
 2 | 
 3 | /*
 4 |  |--------------------------------------------------------------------------
 5 |  | Mix Asset Management
 6 |  |--------------------------------------------------------------------------
 7 |  |
 8 |  | Mix provides a clean, fluent API for defining some Webpack build steps
 9 |  | for your Laravel application. By default, we are compiling the Sass
10 |  | file for the application as well as bundling up all the JS files.
11 |  |
12 |  */
13 | 
14 | mix.react('resources/js/app.js', 'public/js')
15 |    .sass('resources/sass/app.scss', 'public/css');
16 | 


--------------------------------------------------------------------------------
/public/fonts/font-awesome-4.7.0/less/font-awesome.less:
--------------------------------------------------------------------------------
 1 | /*!
 2 |  *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 3 |  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 4 |  */
 5 | 
 6 | @import "variables.less";
 7 | @import "mixins.less";
 8 | @import "path.less";
 9 | @import "core.less";
10 | @import "larger.less";
11 | @import "fixed-width.less";
12 | @import "list.less";
13 | @import "bordered-pulled.less";
14 | @import "animated.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 | @import "screen-reader.less";
19 | 


--------------------------------------------------------------------------------
/app/Http/Controllers/HomeController.php:
--------------------------------------------------------------------------------
 1 | middleware('auth');
17 |     }
18 | 
19 |     /**
20 |      * Show the application dashboard.
21 |      *
22 |      * @return \Illuminate\Contracts\Support\Renderable
23 |      */
24 |     public function index()
25 |     {
26 |         return view('home');
27 |     }
28 | }
29 | 


--------------------------------------------------------------------------------
/app/Providers/AppServiceProvider.php:
--------------------------------------------------------------------------------
 1 |  '« Previous',
17 |     'next' => 'Next »',
18 | 
19 | ];
20 | 


--------------------------------------------------------------------------------
/routes/channels.php:
--------------------------------------------------------------------------------
 1 | id === (int) $id;
18 | });
19 | 


--------------------------------------------------------------------------------
/routes/api.php:
--------------------------------------------------------------------------------
 1 | get('/user', function (Request $request) {
18 |     return $request->user();
19 | });
20 | 


--------------------------------------------------------------------------------
/server.php:
--------------------------------------------------------------------------------
 1 | 
 8 |  */
 9 | 
10 | $uri = urldecode(
11 |     parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
12 | );
13 | 
14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the
15 | // built-in PHP web server. This provides a convenient way to test a Laravel
16 | // application without having installed a "real" web server software here.
17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
18 |     return false;
19 | }
20 | 
21 | require_once __DIR__.'/public/index.php';
22 | 


--------------------------------------------------------------------------------
/routes/console.php:
--------------------------------------------------------------------------------
 1 | comment(Inspiring::quote());
19 | })->describe('Display an inspiring quote');
20 | 


--------------------------------------------------------------------------------
/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 | 


--------------------------------------------------------------------------------
/resources/lang/en/auth.php:
--------------------------------------------------------------------------------
 1 |  'These credentials do not match our records.',
17 |     'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
18 | 
19 | ];
20 | 


--------------------------------------------------------------------------------
/samplefiles/data.geojson:
--------------------------------------------------------------------------------
1 | {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.69532421875,2.0168003722835004],[116.1557734375,4.013442545043108],[116.93028692660788,-2.5302999940395243],[109.4572102444559,-4.337074840238432],[111.69532421875,2.0168003722835004]]]},"properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"name":"Untitled Polygon","id":1,"kode":100,"kategori":1,"latitude":110.4373468639217,"longitude":-7.067000343444539}}],"datas":[[111.69532421875,2.0168003722835004],[116.1557734375,4.013442545043108],[116.93028692660788,-2.5302999940395243],[109.4572102444559,-4.337074840238432],[111.69532421875,2.0168003722835004]]}


--------------------------------------------------------------------------------
/app/Http/Middleware/RedirectIfAuthenticated.php:
--------------------------------------------------------------------------------
 1 | check()) {
22 |             return redirect(RouteServiceProvider::HOME);
23 |         }
24 | 
25 |         return $next($request);
26 |     }
27 | }
28 | 


--------------------------------------------------------------------------------
/app/Providers/AuthServiceProvider.php:
--------------------------------------------------------------------------------
 1 |  'App\Policies\ModelPolicy',
17 |     ];
18 | 
19 |     /**
20 |      * Register any authentication / authorization services.
21 |      *
22 |      * @return void
23 |      */
24 |     public function boot()
25 |     {
26 |         $this->registerPolicies();
27 | 
28 |         //
29 |     }
30 | }
31 | 


--------------------------------------------------------------------------------
/public/fonts/font-awesome-4.7.0/less/bordered-pulled.less:
--------------------------------------------------------------------------------
 1 | // Bordered & Pulled
 2 | // -------------------------
 3 | 
 4 | .@{fa-css-prefix}-border {
 5 |   padding: .2em .25em .15em;
 6 |   border: solid .08em @fa-border-color;
 7 |   border-radius: .1em;
 8 | }
 9 | 
10 | .@{fa-css-prefix}-pull-left { float: left; }
11 | .@{fa-css-prefix}-pull-right { float: right; }
12 | 
13 | .@{fa-css-prefix} {
14 |   &.@{fa-css-prefix}-pull-left { margin-right: .3em; }
15 |   &.@{fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 | 
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 | 
22 | .@{fa-css-prefix} {
23 |   &.pull-left { margin-right: .3em; }
24 |   &.pull-right { margin-left: .3em; }
25 | }
26 | 


--------------------------------------------------------------------------------
/resources/views/home.blade.php:
--------------------------------------------------------------------------------
 1 | @extends('templatebaru')
 2 | 
 3 | @section('content')
 4 | 
5 |
6 |
7 |
8 |
Dashboard
9 | 10 |
11 | @if (session('status')) 12 | 15 | @endif 16 | 17 | You are logged in! 18 |
19 |
20 |
21 |
22 |
23 | @endsection 24 | -------------------------------------------------------------------------------- /app/Http/Middleware/Admin.php: -------------------------------------------------------------------------------- 1 | route('login'); 21 | } 22 | 23 | if (Auth::user()->role == 1) { 24 | return redirect()->route('admin'); 25 | } 26 | 27 | if (Auth::user()->role == 2) { 28 | return redirect()->route('operator'); 29 | } 30 | 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('templatebaru') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
Dashboard
9 | 10 |
11 | @if (session('status')) 12 | 15 | @endif 16 | 17 | You are logged in! 18 |
19 |
20 |
21 |
22 |
23 | @endsection 24 | -------------------------------------------------------------------------------- /resources/views/operator/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('templatebaru') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
Dashboard
9 | 10 |
11 | @if (session('status')) 12 | 15 | @endif 16 | 17 | You are logged in! 18 |
19 |
20 |
21 |
22 |
23 | @endsection 24 | -------------------------------------------------------------------------------- /resources/views/user/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('templatebaru') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
Dashboard
9 | 10 |
11 | @if (session('status')) 12 | 15 | @endif 16 | 17 | You are logged in! 18 |
19 |
20 |
21 |
22 |
23 | @endsection 24 | -------------------------------------------------------------------------------- /resources/js/components/Example.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | 4 | function Example() { 5 | return ( 6 |
7 |
8 |
9 |
10 |
Example Component
11 | 12 |
I'm an example component!
13 |
14 |
15 |
16 |
17 | ); 18 | } 19 | 20 | export default Example; 21 | 22 | if (document.getElementById('example')) { 23 | ReactDOM.render(, document.getElementById('example')); 24 | } 25 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Your password has been reset!', 17 | 'sent' => 'We have emailed your password reset link!', 18 | 'throttled' => 'Please wait before retrying.', 19 | 'token' => 'This password reset token is invalid.', 20 | 'user' => "We can't find a user with that email address.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 19 | SendEmailVerificationNotification::class, 20 | ], 21 | ]; 22 | 23 | /** 24 | * Register any events for your application. 25 | * 26 | * @return void 27 | */ 28 | public function boot() 29 | { 30 | parent::boot(); 31 | 32 | // 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- 1 | 'datetime', 38 | ]; 39 | } 40 | -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/axes-time-zones/tz/yearistype.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | : 'This file is in the public domain, so clarified as of' 4 | : '2006-07-17 by Arthur David Olson.' 5 | 6 | case $#-$1 in 7 | 2-|2-0*|2-*[!0-9]*) 8 | echo "$0: wild year - $1" >&2 9 | exit 1 ;; 10 | esac 11 | 12 | case $#-$2 in 13 | 2-even) 14 | case $1 in 15 | *[24680]) exit 0 ;; 16 | *) exit 1 ;; 17 | esac ;; 18 | 2-nonpres|2-nonuspres) 19 | case $1 in 20 | *[02468][048]|*[13579][26]) exit 1 ;; 21 | *) exit 0 ;; 22 | esac ;; 23 | 2-odd) 24 | case $1 in 25 | *[13579]) exit 0 ;; 26 | *) exit 1 ;; 27 | esac ;; 28 | 2-uspres) 29 | case $1 in 30 | *[02468][048]|*[13579][26]) exit 0 ;; 31 | *) exit 1 ;; 32 | esac ;; 33 | 2-*) 34 | echo "$0: wild type - $2" >&2 ;; 35 | esac 36 | 37 | echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2 38 | exit 1 39 | -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- 1 | ['api/*'], 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 | -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->text('connection'); 19 | $table->text('queue'); 20 | $table->longText('payload'); 21 | $table->longText('exception'); 22 | $table->timestamp('failed_at')->useCurrent(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('failed_jobs'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_URL=http://localhost 6 | 7 | LOG_CHANNEL=stack 8 | 9 | DB_CONNECTION=mysql 10 | DB_HOST=127.0.0.1 11 | DB_PORT=3306 12 | DB_DATABASE=laravel 13 | DB_USERNAME=root 14 | DB_PASSWORD= 15 | 16 | BROADCAST_DRIVER=log 17 | CACHE_DRIVER=file 18 | QUEUE_CONNECTION=sync 19 | SESSION_DRIVER=file 20 | SESSION_LIFETIME=120 21 | 22 | REDIS_HOST=127.0.0.1 23 | REDIS_PASSWORD=null 24 | REDIS_PORT=6379 25 | 26 | MAIL_MAILER=smtp 27 | MAIL_HOST=smtp.mailtrap.io 28 | MAIL_PORT=2525 29 | MAIL_USERNAME=null 30 | MAIL_PASSWORD=null 31 | MAIL_ENCRYPTION=null 32 | MAIL_FROM_ADDRESS=null 33 | MAIL_FROM_NAME="${APP_NAME}" 34 | 35 | AWS_ACCESS_KEY_ID= 36 | AWS_SECRET_ACCESS_KEY= 37 | AWS_DEFAULT_REGION=us-east-1 38 | AWS_BUCKET= 39 | 40 | PUSHER_APP_ID= 41 | PUSHER_APP_KEY= 42 | PUSHER_APP_SECRET= 43 | PUSHER_APP_CLUSTER=mt1 44 | 45 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" 46 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" 47 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | define(User::class, function (Faker $faker) { 21 | return [ 22 | 'name' => $faker->name, 23 | 'email' => $faker->unique()->safeEmail, 24 | 'email_verified_at' => now(), 25 | 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 26 | 'remember_token' => Str::random(10), 27 | ]; 28 | }); 29 | -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
{{ __('Verify Your Email Address') }}
9 | 10 |
11 | @if (session('resent')) 12 | 15 | @endif 16 | 17 | {{ __('Before proceeding, please check your email for a verification link.') }} 18 | {{ __('If you did not receive the email') }}, {{ __('click here to request another') }}. 19 |
20 |
21 |
22 |
23 |
24 | @endsection 25 | -------------------------------------------------------------------------------- /public/asset/img/bigplay.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'domain' => env('MAILGUN_DOMAIN'), 19 | 'secret' => env('MAILGUN_SECRET'), 20 | 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 21 | ], 22 | 23 | 'postmark' => [ 24 | 'token' => env('POSTMARK_TOKEN'), 25 | ], 26 | 27 | 'ses' => [ 28 | 'key' => env('AWS_ACCESS_KEY_ID'), 29 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 30 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /app/Http/Controllers/MapsInsertController.php: -------------------------------------------------------------------------------- 1 | '; 10 | echo 'alert("message successfully sent")'; 11 | echo ''; 12 | } 13 | 14 | public function insert(Request $request){ 15 | $nama_lokasi = $request->input('nama_lokasi'); 16 | $latitude = $request->input('latitude'); 17 | $longitude = $request->input('longitude'); 18 | $keterangan = $request->input('keterangan'); 19 | $type = $request->input('type'); 20 | $data=array('nama_lokasi'=>$nama_lokasi,"latitude"=>$latitude,"longitude"=>$longitude,"keterangan"=>$keterangan, "type"=>$type); 21 | DB::table('lokasi')->insert($data); 22 | echo ''; 23 | 24 | return redirect('maps'); 25 | // echo "Record inserted successfully.
"; 26 | // echo 'Click Here to go back.'; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->string('name'); 19 | $table->string('phone'); 20 | $table->string('email')->unique(); 21 | $table->integer('role'); 22 | $table->timestamp('email_verified_at')->nullable(); 23 | $table->string('password'); 24 | $table->string('status')->nullable(); 25 | $table->rememberToken(); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('users'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2007-2014 IOLA and Ole Laursen 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- 1 | [ 17 | resource_path('views'), 18 | ], 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Compiled View Path 23 | |-------------------------------------------------------------------------- 24 | | 25 | | This option determines where all the compiled Blade templates will be 26 | | stored for your application. Typically, this is within the storage 27 | | directory. However, as usual, you are free to change this value. 28 | | 29 | */ 30 | 31 | 'compiled' => env( 32 | 'VIEW_COMPILED_PATH', 33 | realpath(storage_path('framework/views')) 34 | ), 35 | 36 | ]; 37 | -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/jquery.flot.symbol.min.js: -------------------------------------------------------------------------------- 1 | /* Javascript plotting library for jQuery, version 0.8.3. 2 | 3 | Copyright (c) 2007-2014 IOLA and Ole Laursen. 4 | Licensed under the MIT license. 5 | 6 | */ 7 | (function($){function processRawData(plot,series,datapoints){var handlers={square:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({init:init,name:"symbols",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./tests/Unit 9 | 10 | 11 | ./tests/Feature 12 | 13 | 14 | 15 | 16 | ./app 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 38 | $this->middleware('signed')->only('verify'); 39 | $this->middleware('throttle:6,1')->only('verify', 'resend'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 6 | "watch": "npm run development -- --watch", 7 | "watch-poll": "npm run watch -- --watch-poll", 8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 9 | "prod": "npm run production", 10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 11 | }, 12 | "devDependencies": { 13 | "@babel/preset-react": "^7.0.0", 14 | "axios": "^0.19", 15 | "bootstrap": "^4.0.0", 16 | "cross-env": "^7.0", 17 | "jquery": "^3.2", 18 | "laravel-mix": "^5.0.1", 19 | "lodash": "^4.17.13", 20 | "popper.js": "^1.12", 21 | "react": "^16.2.0", 22 | "react-dom": "^16.2.0", 23 | "resolve-url-loader": "^2.3.1", 24 | "sass": "^1.20.1", 25 | "sass-loader": "^8.0.0" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/axes-time-zones/tz/pacificnew: -------------------------------------------------------------------------------- 1 | #
 2 | # This file is in the public domain, so clarified as of
 3 | # 2009-05-17 by Arthur David Olson.
 4 | 
 5 | # From Arthur David Olson (1989-04-05):
 6 | # On 1989-04-05, the U. S. House of Representatives passed (238-154) a bill
 7 | # establishing "Pacific Presidential Election Time"; it was not acted on
 8 | # by the Senate or signed into law by the President.
 9 | # You might want to change the "PE" (Presidential Election) below to
10 | # "Q" (Quadrennial) to maintain three-character zone abbreviations.
11 | # If you're really conservative, you might want to change it to "D".
12 | # Avoid "L" (Leap Year), which won't be true in 2100.
13 | 
14 | # If Presidential Election Time is ever established, replace "XXXX" below
15 | # with the year the law takes effect and uncomment the "##" lines.
16 | 
17 | # Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
18 | ## Rule	Twilite	XXXX	max	-	Apr	Sun>=1	2:00	1:00	D
19 | ## Rule	Twilite	XXXX	max	uspres	Oct	lastSun	2:00	1:00	PE
20 | ## Rule	Twilite	XXXX	max	uspres	Nov	Sun>=7	2:00	0	S
21 | ## Rule	Twilite	XXXX	max	nonpres	Oct	lastSun	2:00	0	S
22 | 
23 | # Zone	NAME			GMTOFF	RULES/SAVE	FORMAT	[UNTIL]
24 | ## Zone	America/Los_Angeles-PET	-8:00	US		P%sT	XXXX
25 | ##				-8:00	Twilite		P%sT
26 | 
27 | # For now...
28 | Link	America/Los_Angeles	US/Pacific-New	##
29 | 


--------------------------------------------------------------------------------
/app/Exceptions/Handler.php:
--------------------------------------------------------------------------------
 1 | 
 2 | # This file is in the public domain, so clarified as of
 3 | # 2009-05-17 by Arthur David Olson.
 4 | 
 5 | # Old rules, should the need arise.
 6 | # No attempt is made to handle Newfoundland, since it cannot be expressed
 7 | # using the System V "TZ" scheme (half-hour offset), or anything outside
 8 | # North America (no support for non-standard DST start/end dates), nor
 9 | # the changes in the DST rules in the US after 1976 (which occurred after
10 | # the old rules were written).
11 | #
12 | # If you need the old rules, uncomment ## lines.
13 | # Compile this *without* leap second correction for true conformance.
14 | 
15 | # Rule	NAME	FROM	TO	TYPE	IN	ON	AT	SAVE	LETTER/S
16 | Rule	SystemV	min	1973	-	Apr	lastSun	2:00	1:00	D
17 | Rule	SystemV	min	1973	-	Oct	lastSun	2:00	0	S
18 | Rule	SystemV	1974	only	-	Jan	6	2:00	1:00	D
19 | Rule	SystemV	1974	only	-	Nov	lastSun	2:00	0	S
20 | Rule	SystemV	1975	only	-	Feb	23	2:00	1:00	D
21 | Rule	SystemV	1975	only	-	Oct	lastSun	2:00	0	S
22 | Rule	SystemV	1976	max	-	Apr	lastSun	2:00	1:00	D
23 | Rule	SystemV	1976	max	-	Oct	lastSun	2:00	0	S
24 | 
25 | # Zone	NAME		GMTOFF	RULES/SAVE	FORMAT	[UNTIL]
26 | ## Zone	SystemV/AST4ADT	-4:00	SystemV		A%sT
27 | ## Zone	SystemV/EST5EDT	-5:00	SystemV		E%sT
28 | ## Zone	SystemV/CST6CDT	-6:00	SystemV		C%sT
29 | ## Zone	SystemV/MST7MDT	-7:00	SystemV		M%sT
30 | ## Zone	SystemV/PST8PDT	-8:00	SystemV		P%sT
31 | ## Zone	SystemV/YST9YDT	-9:00	SystemV		Y%sT
32 | ## Zone	SystemV/AST4	-4:00	-		AST
33 | ## Zone	SystemV/EST5	-5:00	-		EST
34 | ## Zone	SystemV/CST6	-6:00	-		CST
35 | ## Zone	SystemV/MST7	-7:00	-		MST
36 | ## Zone	SystemV/PST8	-8:00	-		PST
37 | ## Zone	SystemV/YST9	-9:00	-		YST
38 | ## Zone	SystemV/HST10	-10:00	-		HST
39 | 


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/polaris/polaris.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Polaris skin
 2 | ----------------------------------- */
 3 | .icheckbox_polaris,
 4 | .iradio_polaris {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 29px;
11 |     height: 29px;
12 |     background: url(polaris.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_polaris {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_polaris.hover {
21 |         background-position: -31px 0;
22 |     }
23 |     .icheckbox_polaris.checked {
24 |         background-position: -62px 0;
25 |     }
26 |     .icheckbox_polaris.disabled {
27 |         background-position: -93px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_polaris.checked.disabled {
31 |         background-position: -124px 0;
32 |     }
33 | 
34 | .iradio_polaris {
35 |     background-position: -155px 0;
36 | }
37 |     .iradio_polaris.hover {
38 |         background-position: -186px 0;
39 |     }
40 |     .iradio_polaris.checked {
41 |         background-position: -217px 0;
42 |     }
43 |     .iradio_polaris.disabled {
44 |         background-position: -248px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_polaris.checked.disabled {
48 |         background-position: -279px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_polaris,
54 |     .iradio_polaris {
55 |         background-image: url(polaris@2x.png);
56 |         -webkit-background-size: 310px 31px;
57 |         background-size: 310px 31px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/typebase.css:
--------------------------------------------------------------------------------
 1 | /*! Typebase.less v0.1.0 | MIT License */
 2 | /* Setup */
 3 | html {
 4 |   /* Change default typefaces here */
 5 |   font-family: serif;
 6 |   font-size: 137.5%;
 7 |   -webkit-font-smoothing: antialiased;
 8 | }
 9 | /* Copy & Lists */
10 | p {
11 |   line-height: 1.5rem;
12 |   margin-top: 1.5rem;
13 |   margin-bottom: 0;
14 | }
15 | ul,
16 | ol {
17 |  /* margin-top: 1.5rem;*/
18 |   margin-bottom: 1.5rem;
19 | }
20 | ul li,
21 | ol li {
22 |   line-height: 1.5rem;
23 | }
24 | ul ul,
25 | ol ul,
26 | ul ol,
27 | ol ol {
28 |   margin-top: 0;
29 |   margin-bottom: 0;
30 | }
31 | blockquote {
32 |   line-height: 1.5rem;
33 |   margin-top: 1.5rem;
34 |   margin-bottom: 1.5rem;
35 | }
36 | /* Headings */
37 | h1,
38 | h2,
39 | h3,
40 | h4,
41 | h5,
42 | h6 {
43 |   /* Change heading typefaces here */
44 |   font-family: sans-serif;
45 |   margin-top: 1.5rem;
46 |   margin-bottom: 0;
47 |   line-height: 1.5rem;
48 | }
49 | h1 {
50 |   font-size: 4.242rem;
51 |   line-height: 4.5rem;
52 |   margin-top: 3rem;
53 | }
54 | h2 {
55 |   font-size: 2.828rem;
56 |   line-height: 3rem;
57 |   margin-top: 3rem;
58 | }
59 | h3 {
60 |   font-size: 1.414rem;
61 | }
62 | h4 {
63 |   font-size: 0.707rem;
64 | }
65 | h5 {
66 |   font-size: 0.4713333333333333rem;
67 | }
68 | h6 {
69 |   font-size: 0.3535rem;
70 | }
71 | /* Tables */
72 | table {
73 |   margin-top: 1.5rem;
74 |   border-spacing: 0px;
75 |   border-collapse: collapse;
76 | }
77 | table td,
78 | table th {
79 |   padding: 0;
80 |   line-height: 33px;
81 | }
82 | /* Code blocks */
83 | code {
84 |   vertical-align: bottom;
85 | }
86 | /* Leading paragraph text */
87 | .lead {
88 |   font-size: 1.414rem;
89 | }
90 | /* Hug the block above you */
91 | .hug {
92 |   margin-top: 0;
93 | }
94 | 


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/minimal.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, black
 2 | ----------------------------------- */
 3 | .icheckbox_minimal,
 4 | .iradio_minimal {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(minimal.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal,
54 |     .iradio_minimal {
55 |         background-image: url(minimal@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/red.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, red
 2 | ----------------------------------- */
 3 | .icheckbox_square-red,
 4 | .iradio_square-red {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(red.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-red {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-red.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-red.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-red.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-red.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-red {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-red.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-red.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-red.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-red.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-red,
54 |     .iradio_square-red {
55 |         background-image: url(red@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/js/plugins/flot/examples/shared/jquery-ui/jquery-ui.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.0 - 2013-01-26
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.core.css, jquery.ui.resizable.css
4 | * Copyright (c) 2013 jQuery Foundation and other contributors Licensed MIT */
5 | 
6 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}


--------------------------------------------------------------------------------
/config/hashing.php:
--------------------------------------------------------------------------------
 1 |  'bcrypt',
19 | 
20 |     /*
21 |     |--------------------------------------------------------------------------
22 |     | Bcrypt Options
23 |     |--------------------------------------------------------------------------
24 |     |
25 |     | Here you may specify the configuration options that should be used when
26 |     | passwords are hashed using the Bcrypt algorithm. This will allow you
27 |     | to control the amount of time it takes to hash the given password.
28 |     |
29 |     */
30 | 
31 |     'bcrypt' => [
32 |         'rounds' => env('BCRYPT_ROUNDS', 10),
33 |     ],
34 | 
35 |     /*
36 |     |--------------------------------------------------------------------------
37 |     | Argon Options
38 |     |--------------------------------------------------------------------------
39 |     |
40 |     | Here you may specify the configuration options that should be used when
41 |     | passwords are hashed using the Argon algorithm. These will allow you
42 |     | to control the amount of time it takes to hash the given password.
43 |     |
44 |     */
45 | 
46 |     'argon' => [
47 |         'memory' => 1024,
48 |         'threads' => 2,
49 |         'time' => 2,
50 |     ],
51 | 
52 | ];
53 | 


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/red.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, red
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-red,
 4 | .iradio_minimal-red {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(red.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-red {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-red.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-red.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-red.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-red.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-red {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-red.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-red.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-red.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-red.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-red,
54 |     .iradio_minimal-red {
55 |         background-image: url(red@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/aero.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, aero
 2 | ----------------------------------- */
 3 | .icheckbox_square-aero,
 4 | .iradio_square-aero {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(aero.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-aero {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-aero.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-aero.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-aero.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-aero.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-aero {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-aero.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-aero.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-aero.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-aero.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-aero,
54 |     .iradio_square-aero {
55 |         background-image: url(aero@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/blue.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, blue
 2 | ----------------------------------- */
 3 | .icheckbox_square-blue,
 4 | .iradio_square-blue {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(blue.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-blue {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-blue.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-blue.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-blue.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-blue.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-blue {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-blue.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-blue.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-blue.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-blue.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-blue,
54 |     .iradio_square-blue {
55 |         background-image: url(blue@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/grey.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, grey
 2 | ----------------------------------- */
 3 | .icheckbox_square-grey,
 4 | .iradio_square-grey {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(grey.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-grey {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-grey.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-grey.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-grey.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-grey.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-grey {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-grey.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-grey.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-grey.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-grey.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-grey,
54 |     .iradio_square-grey {
55 |         background-image: url(grey@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/pink.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, pink
 2 | ----------------------------------- */
 3 | .icheckbox_square-pink,
 4 | .iradio_square-pink {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(pink.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-pink {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-pink.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-pink.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-pink.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-pink.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-pink {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-pink.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-pink.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-pink.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-pink.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-pink,
54 |     .iradio_square-pink {
55 |         background-image: url(pink@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/aero.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, aero
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-aero,
 4 | .iradio_minimal-aero {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(aero.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-aero {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-aero.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-aero.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-aero.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-aero.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-aero {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-aero.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-aero.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-aero.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-aero.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-aero,
54 |     .iradio_minimal-aero {
55 |         background-image: url(aero@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/blue.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, blue
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-blue,
 4 | .iradio_minimal-blue {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(blue.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-blue {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-blue.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-blue.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-blue.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-blue.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-blue {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-blue.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-blue.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-blue.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-blue.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-blue,
54 |     .iradio_minimal-blue {
55 |         background-image: url(blue@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/grey.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, grey
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-grey,
 4 | .iradio_minimal-grey {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(grey.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-grey {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-grey.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-grey.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-grey.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-grey.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-grey {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-grey.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-grey.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-grey.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-grey.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-grey,
54 |     .iradio_minimal-grey {
55 |         background-image: url(grey@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/pink.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, pink
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-pink,
 4 | .iradio_minimal-pink {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(pink.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-pink {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-pink.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-pink.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-pink.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-pink.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-pink {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-pink.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-pink.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-pink.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-pink.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-pink,
54 |     .iradio_minimal-pink {
55 |         background-image: url(pink@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/green.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, green
 2 | ----------------------------------- */
 3 | .icheckbox_square-green,
 4 | .iradio_square-green {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(green.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-green {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-green.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-green.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-green.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-green.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-green {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-green.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-green.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-green.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-green.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-green,
54 |     .iradio_square-green {
55 |         background-image: url(green@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/green.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, green
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-green,
 4 | .iradio_minimal-green {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(green.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-green {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-green.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-green.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-green.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-green.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-green {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-green.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-green.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-green.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-green.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-green,
54 |     .iradio_minimal-green {
55 |         background-image: url(green@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/orange.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, orange
 2 | ----------------------------------- */
 3 | .icheckbox_square-orange,
 4 | .iradio_square-orange {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(orange.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-orange {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-orange.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-orange.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-orange.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-orange.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-orange {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-orange.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-orange.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-orange.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-orange.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-orange,
54 |     .iradio_square-orange {
55 |         background-image: url(orange@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/purple.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, purple
 2 | ----------------------------------- */
 3 | .icheckbox_square-purple,
 4 | .iradio_square-purple {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(purple.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-purple {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-purple.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-purple.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-purple.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-purple.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-purple {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-purple.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-purple.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-purple.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-purple.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-purple,
54 |     .iradio_square-purple {
55 |         background-image: url(purple@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/square/yellow.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Square skin, yellow
 2 | ----------------------------------- */
 3 | .icheckbox_square-yellow,
 4 | .iradio_square-yellow {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 22px;
11 |     height: 22px;
12 |     background: url(yellow.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_square-yellow {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_square-yellow.hover {
21 |         background-position: -24px 0;
22 |     }
23 |     .icheckbox_square-yellow.checked {
24 |         background-position: -48px 0;
25 |     }
26 |     .icheckbox_square-yellow.disabled {
27 |         background-position: -72px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_square-yellow.checked.disabled {
31 |         background-position: -96px 0;
32 |     }
33 | 
34 | .iradio_square-yellow {
35 |     background-position: -120px 0;
36 | }
37 |     .iradio_square-yellow.hover {
38 |         background-position: -144px 0;
39 |     }
40 |     .iradio_square-yellow.checked {
41 |         background-position: -168px 0;
42 |     }
43 |     .iradio_square-yellow.disabled {
44 |         background-position: -192px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_square-yellow.checked.disabled {
48 |         background-position: -216px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_square-yellow,
54 |     .iradio_square-yellow {
55 |         background-image: url(yellow@2x.png);
56 |         -webkit-background-size: 240px 24px;
57 |         background-size: 240px 24px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/app/Http/Controllers/UpdateMapsController.php:
--------------------------------------------------------------------------------
 1 | redirectTo = route('login');
20 |         //$this->middleware('guest', ['except' => 'logout']);
21 |     }
22 |             public function show($id) {
23 |                     $users = DB::select('select * from lokasi where id = ?',[$id]);
24 |                     return view('updateMaps',['users'=>$users]);
25 |                     }
26 | 
27 |                     public function edit(Request $request,$id) {
28 |                        $nama_lokasi = $request->input('nama_lokasi');
29 |                     $latitude = $request->input('latitude');
30 |                     $longitude = $request->input('longitude');
31 |                     $keterangan = $request->input('keterangan');
32 | 
33 |                         //$data=array('first_name'=>$first_name,"last_name"=>$last_name,"city_name"=>$city_name,"email"=>$email);
34 |                         //DB::table('student')->update($data);
35 |                         // DB::table('student')->whereIn('id', $id)->update($request->all());
36 |                         DB::update('update lokasi set nama_lokasi = ?,latitude=?,longitude=?, keterangan=? where id = ?',[$nama_lokasi,$latitude,$longitude,$keterangan,$id]);
37 |                         echo '';
38 | 
39 |                         return redirect('maps');
40 |                         }
41 | 
42 |                     }
43 | 
44 | 


--------------------------------------------------------------------------------
/bootstrap/app.php:
--------------------------------------------------------------------------------
 1 | singleton(
30 |     Illuminate\Contracts\Http\Kernel::class,
31 |     App\Http\Kernel::class
32 | );
33 | 
34 | $app->singleton(
35 |     Illuminate\Contracts\Console\Kernel::class,
36 |     App\Console\Kernel::class
37 | );
38 | 
39 | $app->singleton(
40 |     Illuminate\Contracts\Debug\ExceptionHandler::class,
41 |     App\Exceptions\Handler::class
42 | );
43 | 
44 | /*
45 | |--------------------------------------------------------------------------
46 | | Return The Application
47 | |--------------------------------------------------------------------------
48 | |
49 | | This script returns the application instance. The instance is given to
50 | | the calling script so we can separate the building of the instances
51 | | from the actual running of the application and sending responses.
52 | |
53 | */
54 | 
55 | return $app;
56 | 


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/orange.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, orange
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-orange,
 4 | .iradio_minimal-orange {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(orange.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-orange {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-orange.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-orange.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-orange.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-orange.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-orange {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-orange.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-orange.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-orange.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-orange.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-orange,
54 |     .iradio_minimal-orange {
55 |         background-image: url(orange@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/purple.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, purple
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-purple,
 4 | .iradio_minimal-purple {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(purple.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-purple {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-purple.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-purple.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-purple.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-purple.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-purple {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-purple.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-purple.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-purple.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-purple.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-purple,
54 |     .iradio_minimal-purple {
55 |         background-image: url(purple@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/minimal/yellow.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin Minimal skin, yellow
 2 | ----------------------------------- */
 3 | .icheckbox_minimal-yellow,
 4 | .iradio_minimal-yellow {
 5 |     display: inline-block;
 6 |     *display: inline;
 7 |     vertical-align: middle;
 8 |     margin: 0;
 9 |     padding: 0;
10 |     width: 18px;
11 |     height: 18px;
12 |     background: url(yellow.png) no-repeat;
13 |     border: none;
14 |     cursor: pointer;
15 | }
16 | 
17 | .icheckbox_minimal-yellow {
18 |     background-position: 0 0;
19 | }
20 |     .icheckbox_minimal-yellow.hover {
21 |         background-position: -20px 0;
22 |     }
23 |     .icheckbox_minimal-yellow.checked {
24 |         background-position: -40px 0;
25 |     }
26 |     .icheckbox_minimal-yellow.disabled {
27 |         background-position: -60px 0;
28 |         cursor: default;
29 |     }
30 |     .icheckbox_minimal-yellow.checked.disabled {
31 |         background-position: -80px 0;
32 |     }
33 | 
34 | .iradio_minimal-yellow {
35 |     background-position: -100px 0;
36 | }
37 |     .iradio_minimal-yellow.hover {
38 |         background-position: -120px 0;
39 |     }
40 |     .iradio_minimal-yellow.checked {
41 |         background-position: -140px 0;
42 |     }
43 |     .iradio_minimal-yellow.disabled {
44 |         background-position: -160px 0;
45 |         cursor: default;
46 |     }
47 |     .iradio_minimal-yellow.checked.disabled {
48 |         background-position: -180px 0;
49 |     }
50 | 
51 | /* HiDPI support */
52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
53 |     .icheckbox_minimal-yellow,
54 |     .iradio_minimal-yellow {
55 |         background-image: url(yellow@2x.png);
56 |         -webkit-background-size: 200px 20px;
57 |         background-size: 200px 20px;
58 |     }
59 | }


--------------------------------------------------------------------------------
/public/asset/css/plugins/icheck/skins/all.css:
--------------------------------------------------------------------------------
 1 | /* iCheck plugin skins
 2 | ----------------------------------- */
 3 | @import url("minimal/_all.css");
 4 | /*
 5 | @import url("minimal/minimal.css");
 6 | @import url("minimal/red.css");
 7 | @import url("minimal/green.css");
 8 | @import url("minimal/blue.css");
 9 | @import url("minimal/aero.css");
10 | @import url("minimal/grey.css");
11 | @import url("minimal/orange.css");
12 | @import url("minimal/yellow.css");
13 | @import url("minimal/pink.css");
14 | @import url("minimal/purple.css");
15 | */
16 | 
17 | @import url("square/_all.css");
18 | /*
19 | @import url("square/square.css");
20 | @import url("square/red.css");
21 | @import url("square/green.css");
22 | @import url("square/blue.css");
23 | @import url("square/aero.css");
24 | @import url("square/grey.css");
25 | @import url("square/orange.css");
26 | @import url("square/yellow.css");
27 | @import url("square/pink.css");
28 | @import url("square/purple.css");
29 | */
30 | 
31 | @import url("flat/_all.css");
32 | /*
33 | @import url("flat/flat.css");
34 | @import url("flat/red.css");
35 | @import url("flat/green.css");
36 | @import url("flat/blue.css");
37 | @import url("flat/aero.css");
38 | @import url("flat/grey.css");
39 | @import url("flat/orange.css");
40 | @import url("flat/yellow.css");
41 | @import url("flat/pink.css");
42 | @import url("flat/purple.css");
43 | */
44 | 
45 | @import url("line/_all.css");
46 | /*
47 | @import url("line/line.css");
48 | @import url("line/red.css");
49 | @import url("line/green.css");
50 | @import url("line/blue.css");
51 | @import url("line/aero.css");
52 | @import url("line/grey.css");
53 | @import url("line/orange.css");
54 | @import url("line/yellow.css");
55 | @import url("line/pink.css");
56 | @import url("line/purple.css");
57 | */
58 | 
59 | @import url("polaris/polaris.css");
60 | 
61 | @import url("futurico/futurico.css");


--------------------------------------------------------------------------------
/config/broadcasting.php:
--------------------------------------------------------------------------------
 1 |  env('BROADCAST_DRIVER', 'null'),
19 | 
20 |     /*
21 |     |--------------------------------------------------------------------------
22 |     | Broadcast Connections
23 |     |--------------------------------------------------------------------------
24 |     |
25 |     | Here you may define all of the broadcast connections that will be used
26 |     | to broadcast events to other systems or over websockets. Samples of
27 |     | each available type of connection are provided inside this array.
28 |     |
29 |     */
30 | 
31 |     'connections' => [
32 | 
33 |         'pusher' => [
34 |             'driver' => 'pusher',
35 |             'key' => env('PUSHER_APP_KEY'),
36 |             'secret' => env('PUSHER_APP_SECRET'),
37 |             'app_id' => env('PUSHER_APP_ID'),
38 |             'options' => [
39 |                 'cluster' => env('PUSHER_APP_CLUSTER'),
40 |                 'useTLS' => true,
41 |             ],
42 |         ],
43 | 
44 |         'redis' => [
45 |             'driver' => 'redis',
46 |             'connection' => 'default',
47 |         ],
48 | 
49 |         'log' => [
50 |             'driver' => 'log',
51 |         ],
52 | 
53 |         'null' => [
54 |             'driver' => 'null',
55 |         ],
56 | 
57 |     ],
58 | 
59 | ];
60 | 


--------------------------------------------------------------------------------
/public/asset/js/plugins/flot/examples/categories/index.html:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 
 4 | 	
 5 | 	Flot Examples: Categories
 6 | 	
 7 | 	
 8 | 	
 9 | 	
10 | 	
11 | 	
37 | 
38 | 
39 | 
40 | 	
43 | 
44 | 	
45 | 46 |
47 |
48 |
49 | 50 |

With the categories plugin you can plot categories/textual data easily.

51 | 52 |
53 | 54 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/jquery.flot.threshold.min.js: -------------------------------------------------------------------------------- 1 | /* Javascript plotting library for jQuery, version 0.8.3. 2 | 3 | Copyright (c) 2007-2014 IOLA and Ole Laursen. 4 | Licensed under the MIT license. 5 | 6 | */ 7 | (function($){var options={series:{threshold:null}};function init(plot){function thresholdData(plot,s,datapoints,below,color){var ps=datapoints.pointsize,i,x,y,p,prevp,thresholded=$.extend({},s);thresholded.datapoints={points:[],pointsize:ps,format:datapoints.format};thresholded.label=null;thresholded.color=color;thresholded.threshold=null;thresholded.originSeries=s;thresholded.data=[];var origpoints=datapoints.points,addCrossingPoints=s.lines.show;var threspoints=[];var newpoints=[];var m;for(i=0;i0&&origpoints[i-ps]!=null){var interx=x+(below-y)*(x-origpoints[i-ps])/(y-origpoints[i-ps+1]);prevp.push(interx);prevp.push(below);for(m=2;m0){var origIndex=$.inArray(s,plot.getData());plot.getData().splice(origIndex+1,0,thresholded)}}function processThresholds(plot,s,datapoints){if(!s.threshold)return;if(s.threshold instanceof Array){s.threshold.sort(function(a,b){return a.below-b.below});$(s.threshold).each(function(i,th){thresholdData(plot,s,datapoints,th.below,th.color)})}else{thresholdData(plot,s,datapoints,s.threshold.below,s.threshold.color)}}plot.hooks.processDatapoints.push(processThresholds)}$.plot.plugins.push({init:init,options:options,name:"threshold",version:"1.2"})})(jQuery); -------------------------------------------------------------------------------- /public/asset/js/plugins/flot/examples/basic-usage/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Flot Examples: Basic Usage 6 | 7 | 8 | 9 | 10 | 33 | 34 | 35 | 36 | 39 | 40 |
41 | 42 |
43 |
44 |
45 | 46 |

You don't have to do much to get an attractive plot. Create a placeholder, make sure it has dimensions (so Flot knows at what size to draw the plot), then call the plot function with your data.

47 | 48 |

The axes are automatically scaled.

49 | 50 |
51 | 52 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- 1 | role){ 34 | case 1: 35 | $this->redirectTo = '/admin'; 36 | return $this->redirectTo; 37 | break; 38 | case 2: 39 | $this->redirectTo = '/operator'; 40 | return $this->redirectTo; 41 | break; 42 | case 3: 43 | $this->redirectTo = '/user'; 44 | return $this->redirectTo; 45 | break; 46 | default: 47 | $this->redirectTo = '/login'; 48 | return $this->redirectTo; 49 | } 50 | 51 | // return $next($request); 52 | } 53 | 54 | /** 55 | * Create a new controller instance. 56 | * 57 | * @return void 58 | */ 59 | public function __construct() 60 | { 61 | // $this->middleware('guest')->except('logout'); 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | .fa-icon-rotate(@degrees, @rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; 16 | -webkit-transform: rotate(@degrees); 17 | -ms-transform: rotate(@degrees); 18 | transform: rotate(@degrees); 19 | } 20 | 21 | .fa-icon-flip(@horiz, @vert, @rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; 23 | -webkit-transform: scale(@horiz, @vert); 24 | -ms-transform: scale(@horiz, @vert); 25 | transform: scale(@horiz, @vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | .sr-only() { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | .sr-only-focusable() { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | make(Illuminate\Contracts\Console\Kernel::class); 34 | 35 | $status = $kernel->handle( 36 | $input = new Symfony\Component\Console\Input\ArgvInput, 37 | new Symfony\Component\Console\Output\ConsoleOutput 38 | ); 39 | 40 | /* 41 | |-------------------------------------------------------------------------- 42 | | Shutdown The Application 43 | |-------------------------------------------------------------------------- 44 | | 45 | | Once Artisan has finished running, we will fire off the shutdown events 46 | | so that any final work may be done by the application before we shut 47 | | down the process. This is the last thing to happen to the request. 48 | | 49 | */ 50 | 51 | $kernel->terminate($input, $status); 52 | 53 | exit($status); 54 | -------------------------------------------------------------------------------- /resources/views/test.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | KML Click Capture Sample 7 | 30 | 31 | 32 |
33 |
34 | 57 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /public/fonts/font-awesome-4.7.0/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | @mixin fa-icon-rotate($degrees, $rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; 16 | -webkit-transform: rotate($degrees); 17 | -ms-transform: rotate($degrees); 18 | transform: rotate($degrees); 19 | } 20 | 21 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; 23 | -webkit-transform: scale($horiz, $vert); 24 | -ms-transform: scale($horiz, $vert); 25 | transform: scale($horiz, $vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | @mixin sr-only { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | @mixin sr-only-focusable { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire')->hourly(); 28 | } 29 | 30 | /** 31 | * Register the commands for the application. 32 | * 33 | * @return void 34 | */ 35 | protected function commands() 36 | { 37 | $this->load(__DIR__.'/Commands'); 38 | 39 | require base_path('routes/console.php'); 40 | } 41 | 42 | protected $routeMiddleware = [ 43 | 'auth' => \App\Http\Middleware\Authenticate::class, 44 | 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 45 | 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class, 46 | 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, 47 | 'can' => \Illuminate\Auth\Middleware\Authorize::class, 48 | 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 49 | 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class, 50 | 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 51 | 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, 52 | 53 | 'admin' => \App\Http\Middleware\Admin::class, 54 | 'operator' => \App\Http\Middleware\Operator::class, 55 | 'user' => \App\Http\Middleware\User::class, 56 | ]; 57 | } 58 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "laravel/laravel", 3 | "type": "project", 4 | "description": "The Laravel Framework.", 5 | "keywords": [ 6 | "framework", 7 | "laravel" 8 | ], 9 | "license": "MIT", 10 | "require": { 11 | "php": "^7.2.5", 12 | "cornford/googlmapper": "2.*", 13 | "fideloper/proxy": "^4.2", 14 | "fruitcake/laravel-cors": "^1.0", 15 | "guzzlehttp/guzzle": "^6.3", 16 | "laravel/framework": "^7.0", 17 | "laravel/tinker": "^2.0", 18 | "laravel/ui": "^2.0", 19 | "maatwebsite/excel": "^3.1" 20 | }, 21 | "require-dev": { 22 | "facade/ignition": "^2.0", 23 | "fzaninotto/faker": "^1.9.1", 24 | "mockery/mockery": "^1.3.1", 25 | "nunomaduro/collision": "^4.1", 26 | "phpunit/phpunit": "^8.5" 27 | }, 28 | "config": { 29 | "optimize-autoloader": true, 30 | "preferred-install": "dist", 31 | "sort-packages": true 32 | }, 33 | "extra": { 34 | "laravel": { 35 | "dont-discover": [] 36 | } 37 | }, 38 | "autoload": { 39 | "psr-4": { 40 | "App\\": "app/" 41 | }, 42 | "classmap": [ 43 | "database/seeds", 44 | "database/factories" 45 | ] 46 | 47 | }, 48 | "autoload-dev": { 49 | "psr-4": { 50 | "Tests\\": "tests/" 51 | } 52 | }, 53 | "minimum-stability": "dev", 54 | "prefer-stable": true, 55 | "scripts": { 56 | "post-autoload-dump": [ 57 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", 58 | "@php artisan package:discover --ansi" 59 | ], 60 | "post-root-package-install": [ 61 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" 62 | ], 63 | "post-create-project-cmd": [ 64 | "@php artisan key:generate --ansi" 65 | ] 66 | } 67 | } 68 | 69 | -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- 1 | mapApiRoutes(); 46 | 47 | $this->mapWebRoutes(); 48 | 49 | // 50 | } 51 | 52 | /** 53 | * Define the "web" routes for the application. 54 | * 55 | * These routes all receive session state, CSRF protection, etc. 56 | * 57 | * @return void 58 | */ 59 | protected function mapWebRoutes() 60 | { 61 | Route::middleware('web') 62 | ->namespace($this->namespace) 63 | ->group(base_path('routes/web.php')); 64 | } 65 | 66 | /** 67 | * Define the "api" routes for the application. 68 | * 69 | * These routes are typically stateless. 70 | * 71 | * @return void 72 | */ 73 | protected function mapApiRoutes() 74 | { 75 | Route::prefix('api') 76 | ->middleware('api') 77 | ->namespace($this->namespace) 78 | ->group(base_path('routes/api.php')); 79 | } 80 | } 81 | --------------------------------------------------------------------------------