├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helpers │ ├── API.php │ ├── Authentication.php │ ├── Generate.php │ └── ResponseHelper.php ├── Http │ ├── Controllers │ │ ├── AppController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ └── HomeController.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── School.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ └── 2017_05_28_120923_create_schools_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── app.css │ └── hover-min.css ├── data │ └── sekolah.json ├── favicon.ico ├── fonts │ └── vendor │ │ └── bootstrap-sass │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── arrow-more.png │ ├── logo.png │ └── placeholder.gif ├── index.php ├── js │ ├── app.js │ └── isotope.pkgd.min.js ├── mix-manifest.json └── robots.txt ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── Example.vue │ └── sass │ │ ├── _bootstrap_variables.scss │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── detail.blade.php │ ├── home.blade.php │ └── layout │ ├── app.blade.php │ └── includes │ ├── footer.blade.php │ ├── header.blade.php │ ├── script.blade.php │ ├── sidebar.blade.php │ └── style.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── sekolahcimahi.sql ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/LICENSE -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Helpers/API.php -------------------------------------------------------------------------------- /app/Helpers/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Helpers/Authentication.php -------------------------------------------------------------------------------- /app/Helpers/Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Helpers/Generate.php -------------------------------------------------------------------------------- /app/Helpers/ResponseHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Helpers/ResponseHelper.php -------------------------------------------------------------------------------- /app/Http/Controllers/AppController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Controllers/AppController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/School.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/School.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_28_120923_create_schools_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/database/migrations/2017_05_28_120923_create_schools_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/hover-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/css/hover-min.css -------------------------------------------------------------------------------- /public/data/sekolah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/data/sekolah.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/img/arrow-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/img/arrow-more.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/img/placeholder.gif -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/js/isotope.pkgd.min.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/components/Example.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/assets/js/components/Example.vue -------------------------------------------------------------------------------- /resources/assets/sass/_bootstrap_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/assets/sass/_bootstrap_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/detail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/detail.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layout/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/layout/app.blade.php -------------------------------------------------------------------------------- /resources/views/layout/includes/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/layout/includes/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layout/includes/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/layout/includes/header.blade.php -------------------------------------------------------------------------------- /resources/views/layout/includes/script.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/layout/includes/script.blade.php -------------------------------------------------------------------------------- /resources/views/layout/includes/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/layout/includes/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/layout/includes/style.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/resources/views/layout/includes/style.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/routes/web.php -------------------------------------------------------------------------------- /sekolahcimahi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/sekolahcimahi.sql -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galpratama/sekolah-cimahi/HEAD/yarn.lock --------------------------------------------------------------------------------