SAW and Fuzzy Topsis
parents
Showing
$value)
0 → 100644
$value){
0 → 100644
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.styleci.yml
0 → 100644
0.00
0 → 100644
1.00
0 → 100644
11
0 → 100644
16
0 → 100644
2.00
0 → 100644
26
0 → 100644
3.00
0 → 100644
6
0 → 100644
README.md
0 → 100644
app/AdakRegistrasi.php
0 → 100644
app/Console/Kernel.php
0 → 100644
app/DimPenilaian.php
0 → 100644
app/DimxDim.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Exports/AdakRegistrasiExport.php
0 → 100644
app/Exports/DimPenilaianExport.php
0 → 100644
app/Exports/DimxDimExport.php
0 → 100644
app/HasilSeleksiAwalSaw.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Controllers/DimxDimController.php
0 → 100644
This diff is collapsed.
Click to expand it.
app/Http/Controllers/PageController.php
0 → 100644
app/Http/Controllers/SKKMController.php
0 → 100644
app/Http/Controllers/SawController.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/Middleware/Authenticate.php
0 → 100644
app/Http/Middleware/EncryptCookies.php
0 → 100644
app/Http/Middleware/TrimStrings.php
0 → 100644
app/Http/Middleware/TrustProxies.php
0 → 100644
app/Http/Middleware/VerifyCsrfToken.php
0 → 100644
app/Imports/AdakRegistrasiImport.php
0 → 100644
app/Imports/AskmDimPenilaianImport.php
0 → 100644
app/Imports/DimxDimImport.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/AuthServiceProvider.php
0 → 100644
app/Providers/BroadcastServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.php
0 → 100644
app/Providers/RouteServiceProvider.php
0 → 100644
app/SKKM.php
0 → 100644
app/User.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "laravel/laravel", | ||
"type": "project", | ||
"description": "The Laravel Framework.", | ||
"keywords": [ | ||
"framework", | ||
"laravel" | ||
], | ||
"license": "MIT", | ||
"require": { | ||
"php": "^7.2", | ||
"fideloper/proxy": "^4.0", | ||
"laravel/framework": "^6.2", | ||
"laravel/tinker": "^2.0", | ||
"maatwebsite/excel": "^3.1" | ||
}, | ||
"require-dev": { | ||
"facade/ignition": "^1.4", | ||
"fzaninotto/faker": "^1.4", | ||
"laravel/ui": "^1.1", | ||
"mockery/mockery": "^1.0", | ||
"nunomaduro/collision": "^3.0", | ||
"phpunit/phpunit": "^8.0" | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": "dist", | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"dont-discover": [] | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"App\\": "app/" | ||
}, | ||
"classmap": [ | ||
"database/seeds", | ||
"database/factories" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"scripts": { | ||
"post-autoload-dump": [ | ||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
"@php artisan package:discover --ansi" | ||
], | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
], | ||
"post-create-project-cmd": [ | ||
"@php artisan key:generate --ansi" | ||
] | ||
} | ||
} |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/broadcasting.php
0 → 100644
config/cache.php
0 → 100644
config/database.php
0 → 100644
config/excel.php
0 → 100644
config/filesystems.php
0 → 100644
config/hashing.php
0 → 100644
config/logging.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
config/view.php
0 → 100644
database/.gitignore
0 → 100644
database/factories/UserFactory.php
0 → 100644
database/seeds/DatabaseSeeder.php
0 → 100644
database/seeds/DimxdimTableSeeder.php
0 → 100644
database/seeds/adakregistrasiTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/penilaianTableSeeder.php
0 → 100644
database/sistem_informasi.sql
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
halo.txt
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
{ | ||
"private": true, | ||
"scripts": { | ||
"dev": "npm run development", | ||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"watch": "npm run development -- --watch", | ||
"watch-poll": "npm run watch -- --watch-poll", | ||
"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", | ||
"prod": "npm run production", | ||
"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" | ||
}, | ||
"devDependencies": { | ||
"axios": "^0.19", | ||
"bootstrap": "^4.0.0", | ||
"cross-env": "^5.1", | ||
"jquery": "^3.2", | ||
"laravel-mix": "^4.0.7", | ||
"lodash": "^4.17.13", | ||
"popper.js": "^1.12", | ||
"resolve-url-loader": "^2.3.1", | ||
"sass": "^1.20.1", | ||
"sass-loader": "7.*", | ||
"vue": "^2.5.17", | ||
"vue-template-compiler": "^2.6.10" | ||
} | ||
} |
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/SKKM.xlsx
0 → 100644
File added
public/css/app.css
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/favicon.ico
0 → 100644
File added
public/file_excell/1027388360IP 2017.xlsx
0 → 100644
File added
File added
File added
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/1183907572IP 2017.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
public/file_excell/1190712901dimx_dim.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/1252161826IP.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/160954153IP 2017.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/1918273480IP 2017.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/277923272dimx_dim.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/404570551IP 2017.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/533835996IP 2017.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/868588741dimx_dim.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/file_excell/940079965IP 2017.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/index.php
0 → 100644
This diff is collapsed.
Click to expand it.
public/js/app.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/mix-manifest.json
0 → 100644
This diff is collapsed.
Click to expand it.
public/robots.txt
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/about.html
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/contact.html
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/css/style.css
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/about-bg.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/contact-bg.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/delete.png
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/edit.png
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/home-bg.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/iconplus.png
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/madan1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/madan2.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/images/madan3.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/index.html
0 → 100644
This diff is collapsed.
Click to expand it.
public/template_madan/js/mystyle.js
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/template_madan/vendor/jquery/jqtab.js
0 → 100644
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/web.config
0 → 100644
This diff is collapsed.
Click to expand it.
resources/js/app.js
0 → 100644
This diff is collapsed.
Click to expand it.
resources/js/bootstrap.js
0 → 100644
This diff is collapsed.
Click to expand it.
resources/js/components/ExampleComponent.vue
0 → 100644
This diff is collapsed.
Click to expand it.
resources/lang/en/auth.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/lang/en/pagination.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/lang/en/passwords.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/lang/en/validation.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/sass/_variables.scss
0 → 100644
This diff is collapsed.
Click to expand it.
resources/sass/app.scss
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
resources/views/SAW/sawPage.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
resources/views/adak_registrasi.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/askm_dim_penilaian.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/css/bootstrap.css
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
resources/views/assets/css/bootstrap.min.css
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
resources/views/assets/css/demo.css
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/css/demo.css.map
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/css/main.css
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/css/main.css.map
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/apple-icon.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/favicon.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/login-bg.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/logo-dark.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/profile-bg.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/user-medium.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/user.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/user1.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/user2.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/user3.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/user4.png
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/assets/img/user5.png
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
resources/views/dimx_dim.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/footer.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/header.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/homepage.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/perbandingan.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/seleksi_awal.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/template.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/api.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/channels.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/console.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/web.php
0 → 100644
This diff is collapsed.
Click to expand it.
ruben.txt
0 → 100644
This diff is collapsed.
Click to expand it.
server.php
0 → 100644
This diff is collapsed.
Click to expand it.
storage/app/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/app/public/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/cache/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/cache/data/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/sessions/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/testing/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/views/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/logs/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
tests/CreatesApplication.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/TestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Unit/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
value)
0 → 100644
This diff is collapsed.
Click to expand it.
value){
0 → 100644
This diff is collapsed.
Click to expand it.
webpack.mix.js
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment