Sistem sudah mengalami perubahan route dan fungsi dari setiap aktor sudah dapat dibagi
parents
Showing
.env.example
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
Support Project by.txt
0 → 100644
app/Book.php
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Http/Controllers/BookController.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Controllers/DownloadController.php
0 → 100644
app/Http/Controllers/ExcelController.php
0 → 100644
app/Http/Controllers/HomeController.php
0 → 100644
app/Http/Controllers/KamarController.php
0 → 100644
app/Http/Controllers/PDFController.php
0 → 100644
app/Http/Controllers/SBookController.php
0 → 100644
app/Http/Controllers/UploadpController.php
0 → 100644
app/Http/Controllers/UploadsController.php
0 → 100644
app/Http/Controllers/UploadseeController.php
0 → 100644
app/Http/Controllers/UserController.php
0 → 100644
app/Http/Controllers/backend/AdmCtrl.php
0 → 100644
app/Http/Controllers/backend/PgwCtrl.php
0 → 100644
app/Http/Controllers/backend/RctCtrl.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/Middleware/Administrasi.php
0 → 100644
app/Http/Middleware/EncryptCookies.php
0 → 100644
app/Http/Middleware/Manager.php
0 → 100644
app/Http/Middleware/Pegawai.php
0 → 100644
app/Http/Middleware/Receptionist.php
0 → 100644
app/Http/Middleware/VerifyCsrfToken.php
0 → 100644
app/Http/Requests/reqAdm.php
0 → 100644
app/Http/Requests/reqPgw.php
0 → 100644
app/Http/Requests/reqRct.php
0 → 100644
app/Kamar.php
0 → 100644
app/Models/Administrasi.php
0 → 100644
app/Models/Pegawai.php
0 → 100644
app/Models/Receptionist.php
0 → 100644
app/Pembayaran.php
0 → 100644
app/Pengunjung.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/SBook.php
0 → 100644
app/Uploadp.php
0 → 100644
app/Uploads.php
0 → 100644
app/Uploadsee.php
0 → 100644
app/UploadseePegawai.php
0 → 100644
app/User.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/autoload.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "laravel/laravel", | |||
"description": "The Laravel Framework.", | |||
"keywords": ["framework", "laravel"], | |||
"license": "MIT", | |||
"type": "project", | |||
"require": { | |||
"php": ">=5.6.4", | |||
"laravel/framework": "5.3.*", | |||
"laravelcollective/html": "5.3.*", | |||
"tcg/voyager": "^0.10.3", | |||
"maatwebsite/excel": "^2.1", | |||
"barryvdh/laravel-dompdf": "^0.8.0" | |||
}, | |||
"require-dev": { | |||
"fzaninotto/faker": "~1.4", | |||
"mockery/mockery": "0.9.*", | |||
"phpunit/phpunit": "~5.0", | |||
"symfony/css-selector": "3.1.*", | |||
"symfony/dom-crawler": "3.1.*" | |||
}, | |||
"autoload": { | |||
"classmap": [ | |||
"database" | |||
], | |||
"psr-4": { | |||
"App\\": "app/" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"classmap": [ | |||
"tests/TestCase.php" | |||
] | |||
}, | |||
"scripts": { | |||
"post-root-package-install": [ | |||
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |||
], | |||
"post-create-project-cmd": [ | |||
"php artisan key:generate" | |||
], | |||
"post-install-cmd": [ | |||
"Illuminate\\Foundation\\ComposerScripts::postInstall", | |||
"php artisan optimize" | |||
], | |||
"post-update-cmd": [ | |||
"Illuminate\\Foundation\\ComposerScripts::postUpdate", | |||
"php artisan optimize" | |||
] | |||
}, | |||
"config": { | |||
"preferred-install": "dist" | |||
} | |||
} |
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/compile.php
0 → 100644
config/database.php
0 → 100644
config/dompdf.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/excel.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/filesystems.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/ModelFactory.php
0 → 100644
database/migrations/.gitkeep
0 → 100644
database/seeds/.gitkeep
0 → 100644
database/seeds/CategoriesTableSeeder.php
0 → 100644
database/seeds/DataRowsTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/DataTypesTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/DatabaseSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/MenuItemsTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/MenusTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/PagesTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/PermissionRoleTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/PermissionsTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/PostsTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/RolesTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/SettingsTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/UsersTableSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
database/seeds/VoyagerDatabaseSeeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
gulpfile.js
0 → 100644
This diff is collapsed.
Click to expand it.
ide_project.sql
0 → 100644
This diff is collapsed.
Click to expand it.
package.json
0 → 100644
This diff is collapsed.
Click to expand it.
phpunit.xml
0 → 100644
This diff is collapsed.
Click to expand it.
public/.htaccess
0 → 100644
This diff is collapsed.
Click to expand it.
public/css/.DS_Store
0 → 100644
This diff is collapsed.
Click to expand it.
public/css/animate.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
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/css/bootstrap.min.css
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/css/demo.css
0 → 100644
This diff is collapsed.
Click to expand it.
public/css/paper-dashboard.css
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/css/themify-icons.css
0 → 100644
This diff is collapsed.
Click to expand it.
public/favicon.ico
0 → 100644
This diff is collapsed.
Click to expand it.
public/fonts/.DS_Store
0 → 100644
This diff is collapsed.
Click to expand it.
public/fonts/themify.eot
0 → 100644
This diff is collapsed.
Click to expand it.
public/fonts/themify.svg
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/fonts/themify.ttf
0 → 100644
This diff is collapsed.
Click to expand it.
public/fonts/themify.woff
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/.DS_Store
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/apple-icon.png
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/background.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/background/.DS_Store
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/faces/.DS_Store
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/faces/face-0.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/faces/face-1.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/faces/face-2.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/faces/face-3.jpg
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/favicon.png
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/new_logo.png
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/room.png
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/tables/.DS_Store
0 → 100644
This diff is collapsed.
Click to expand it.
public/img/tim_80x80.png
0 → 100644
This diff is collapsed.
Click to expand it.
public/index.php
0 → 100644
This diff is collapsed.
Click to expand it.
public/js/.DS_Store
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/js/bootstrap-checkbox-radio.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/js/bootstrap-notify.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/js/bootstrap.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/js/chartist.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/js/demo.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/js/jquery-1.10.2.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/js/paper-dashboard.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/robots.txt
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper-dashboard.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_alerts.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_buttons.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_cards.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_chartist.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_checkbox-radio.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_dropdown.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_footers.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_inputs.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_misc.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_mixins.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_navbars.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_responsive.scss
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/sass/paper/_tables.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_typography.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/_variables.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_buttons.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_cards.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_chartist.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_icons.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_inputs.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_labels.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_navbars.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_sidebar.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_tabs.scss
0 → 100644
This diff is collapsed.
Click to expand it.
public/sass/paper/mixins/_transparency.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.
public/uploadp/CEK_IP.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
public/uploads/Alkitab.rtf
0 → 100644
This diff is collapsed.
Click to expand it.
public/uploads/Business Intelligence.docx
0 → 100644
This diff is collapsed.
Click to expand it.
public/uploads/Export Data(3).xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
public/uploads/HandBrake.exe
0 → 100644
This diff is collapsed.
Click to expand it.
public/uploads/Hardware.pptx
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/uploads/Modul Space Shooter 2D.pdf
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/uploads/Schema.docx
0 → 100644
This diff is collapsed.
Click to expand it.
public/uploads/book.csv.xlsx
0 → 100644
This diff is collapsed.
Click to expand it.
public/uploads/ɛnɪmi.docx
0 → 100644
This diff is collapsed.
Click to expand it.
readme.md
0 → 100644
This diff is collapsed.
Click to expand it.
resources/assets/js/app.js
0 → 100644
This diff is collapsed.
Click to expand it.
resources/assets/js/bootstrap.js
0 → 100644
This diff is collapsed.
Click to expand it.
resources/assets/js/components/Example.vue
0 → 100644
This diff is collapsed.
Click to expand it.
resources/assets/sass/_variables.scss
0 → 100644
This diff is collapsed.
Click to expand it.
resources/assets/sass/app.scss
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.
This diff is collapsed.
Click to expand it.
resources/views/auth/login.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/auth/register.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.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
resources/views/backend/dashboard.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.
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/book/create.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/book/edit.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/book/index.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/download/viewfile.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/errors/503.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/excel/importBuku.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/home.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/kamar/create.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/kamar/edit.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/kamar/index.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/layouts/app.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/layouts/footer.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/layouts/header.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/layouts/layout.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/layouts/sidebar.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/master.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pdf/buku.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pdf/pembayaran.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pdf/pengunjung.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pegawai/dashboard.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pembayaran/create.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pembayaran/edit.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pembayaran/index.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pengunjung/create.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pengunjung/edit.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/pengunjung/index.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/profile.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
resources/views/sbook/create.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/sbook/edit.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/sbook/index.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/seeupload/index.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
resources/views/upload/create.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/upload/index.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/vendor/.gitkeep
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.
resources/views/welcome.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/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.
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/sessions/.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/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.
Please
register
or
sign in
to comment