├── database
├── seeds
│ ├── .gitkeep
│ └── LookupSeeder.php
├── migrations
│ ├── .gitkeep
│ ├── 2014_12_16_214115_import_data_wilayah.php
│ ├── 2014_12_31_104943_create_table_cases_suspects.php
│ ├── 2015_02_03_073034_alter_phase_history_start_date_nullable.php
│ ├── 2015_02_10_140822_add_datun_to_posts.php
│ ├── 2014_12_16_154446_add_icon_to_sop_phase.php
│ ├── 2015_01_26_062031_add_enum_position_to_posts.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2015_02_10_142849_add_number_to_cases_checklist.php
│ ├── 2014_12_02_073229_create_acl_permissions_table.php
│ ├── 2015_01_21_162824_add_category_to_case.php
│ ├── 2014_12_02_073214_create_acl_users_groups_table.php
│ ├── 2015_01_21_172332_add_nomor_penahanan_to_suspect.php
│ ├── 2015_01_21_105807_add_penyidik_type_to_cases.php
│ └── 2014_12_17_103104_create_table_settings.php
└── .gitignore
├── app
├── Http
│ ├── Requests
│ │ ├── .gitkeep
│ │ ├── Request.php
│ │ ├── LoginRequest.php
│ │ └── RegisterRequest.php
│ └── Controllers
│ │ ├── Backend
│ │ ├── BackendController.php
│ │ └── DefaultController.php
│ │ └── Controller.php
├── AuditTrail
│ ├── Loggable.php
│ └── Activity
│ │ └── RepositoryInterface.php
├── Menu
│ └── RepositoryInterface.php
├── Lookup
│ ├── RepositoryInterface.php
│ └── Lookup.php
├── Providers
│ ├── EventServiceProvider.php
│ ├── ConfigServiceProvider.php
│ └── BusServiceProvider.php
├── Officer
│ ├── RepositoryInterface.php
│ └── Form.php
├── Setting.php
├── Cases
│ ├── Form.php
│ ├── WitnessForm.php
│ ├── SuspectsForm.php
│ ├── Evidence
│ │ ├── EvidenceForm.php
│ │ └── Evidence.php
│ └── Court
│ │ └── CourtForm.php
├── Sop
│ ├── RepositoryInterface.php
│ └── CaseChecklistPivot.php
└── Model
│ └── Form.php
├── config
├── packages
│ ├── .gitkeep
│ └── eendonesia
│ │ └── gapura
│ │ ├── .gitkeep
│ │ └── config.php
├── slide.php
├── preference.php
└── pagination.php
├── public
├── packages
│ ├── .gitkeep
│ └── eendonesia
│ │ └── dekor
│ │ ├── .gitkeep
│ │ ├── font-awesome
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ ├── less
│ │ │ ├── fixed-width.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── core.less
│ │ │ ├── font-awesome.less
│ │ │ ├── stacked.less
│ │ │ ├── spinning.less
│ │ │ ├── rotated-flipped.less
│ │ │ └── path.less
│ │ └── scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _bordered-pulled.scss
│ │ │ ├── _larger.scss
│ │ │ ├── _core.scss
│ │ │ ├── _list.scss
│ │ │ ├── font-awesome.scss
│ │ │ ├── _stacked.scss
│ │ │ ├── _spinning.scss
│ │ │ └── _path.scss
│ │ └── bootstrap
│ │ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ │ └── js
│ │ └── npm.js
├── info.php
├── vendor
│ ├── bootstrap
│ │ ├── less
│ │ │ ├── custom
│ │ │ │ ├── block.less
│ │ │ │ ├── checklist.less
│ │ │ │ ├── tab.less
│ │ │ │ ├── footer.less
│ │ │ │ ├── log.less
│ │ │ │ ├── login.less
│ │ │ │ ├── post.less
│ │ │ │ ├── admin.less
│ │ │ │ ├── alert.less
│ │ │ │ └── table.less
│ │ │ ├── mixins
│ │ │ │ ├── center-block.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── size.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── alerts.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── hide-text.less
│ │ │ │ └── clearfix.less
│ │ │ ├── .csslintrc
│ │ │ ├── bootstrap-custom.less
│ │ │ ├── wells.less
│ │ │ ├── breadcrumbs.less
│ │ │ └── responsive-embed.less
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ └── js
│ │ │ └── npm.js
│ ├── select2
│ │ ├── .gitignore
│ │ ├── select2.png
│ │ ├── select2x2.png
│ │ ├── select2-spinner.gif
│ │ ├── bower.json
│ │ ├── package.json
│ │ ├── select2_locale_zh-CN.js
│ │ ├── composer.json
│ │ ├── select2_locale_zh-TW.js
│ │ └── select2_locale_ja.js
│ ├── bootstrap-daterangepicker
│ │ ├── .gitignore
│ │ └── bower.json
│ ├── slide
│ │ └── images
│ │ │ ├── loader.gif
│ │ │ ├── pattern.png
│ │ │ └── large
│ │ │ ├── countryside_fisherman-3840x2160.jpg
│ │ │ ├── summer_in_switzerland-3840x2160.jpg
│ │ │ └── grand_canyon_of_the_yellowstone-3840x2160.jpg
│ ├── bigvideo
│ │ └── css
│ │ │ └── bigvideo.png
│ ├── redactor
│ │ ├── redactor-font.eot
│ │ └── plugins
│ │ │ └── underline.js
│ ├── ionicons
│ │ └── fonts
│ │ │ ├── ionicons.eot
│ │ │ ├── ionicons.ttf
│ │ │ └── ionicons.woff
│ ├── font-awesome
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ ├── less
│ │ │ ├── fixed-width.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── larger.less
│ │ │ ├── core.less
│ │ │ ├── list.less
│ │ │ ├── font-awesome.less
│ │ │ ├── stacked.less
│ │ │ ├── spinning.less
│ │ │ ├── rotated-flipped.less
│ │ │ └── path.less
│ │ └── scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _bordered-pulled.scss
│ │ │ ├── _larger.scss
│ │ │ ├── _core.scss
│ │ │ ├── _list.scss
│ │ │ ├── font-awesome.scss
│ │ │ ├── _stacked.scss
│ │ │ ├── _spinning.scss
│ │ │ ├── _path.scss
│ │ │ └── _rotated-flipped.scss
│ ├── bootflat
│ │ ├── img
│ │ │ └── check_flat
│ │ │ │ ├── default.png
│ │ │ │ └── default.psd
│ │ └── scss
│ │ │ ├── .csslintrc
│ │ │ └── bootflat
│ │ │ └── _media_list.scss
│ ├── chartjs.devexpress
│ │ └── globalize.min.js
│ ├── photoswipe
│ │ └── default-skin
│ │ │ ├── preloader.gif
│ │ │ └── default-skin.png
│ ├── bootstrap-datepicker
│ │ └── js
│ │ │ └── locales
│ │ │ ├── bootstrap-datepicker.kr.js
│ │ │ ├── bootstrap-datepicker.gl.js
│ │ │ ├── bootstrap-datepicker.ja.js
│ │ │ ├── bootstrap-datepicker.hr.js
│ │ │ ├── bootstrap-datepicker.zh-CN.js
│ │ │ ├── bootstrap-datepicker.az.js
│ │ │ ├── bootstrap-datepicker.cy.js
│ │ │ ├── bootstrap-datepicker.he.js
│ │ │ ├── bootstrap-datepicker.ms.js
│ │ │ ├── bootstrap-datepicker.no.js
│ │ │ ├── bootstrap-datepicker.ca.js
│ │ │ ├── bootstrap-datepicker.el.js
│ │ │ ├── bootstrap-datepicker.rs.js
│ │ │ ├── bootstrap-datepicker.th.js
│ │ │ ├── bootstrap-datepicker.bg.js
│ │ │ ├── bootstrap-datepicker.es.js
│ │ │ ├── bootstrap-datepicker.nl.js
│ │ │ ├── bootstrap-datepicker.sl.js
│ │ │ ├── bootstrap-datepicker.rs-latin.js
│ │ │ ├── bootstrap-datepicker.nb.js
│ │ │ ├── bootstrap-datepicker.sq.js
│ │ │ ├── bootstrap-datepicker.ua.js
│ │ │ ├── bootstrap-datepicker.id.js
│ │ │ ├── bootstrap-datepicker.kk.js
│ │ │ ├── bootstrap-datepicker.tr.js
│ │ │ ├── bootstrap-datepicker.da.js
│ │ │ ├── bootstrap-datepicker.pt-BR.js
│ │ │ ├── bootstrap-datepicker.ru.js
│ │ │ ├── bootstrap-datepicker.cs.js
│ │ │ ├── bootstrap-datepicker.is.js
│ │ │ ├── bootstrap-datepicker.sk.js
│ │ │ ├── bootstrap-datepicker.sv.js
│ │ │ └── bootstrap-datepicker.fa.js
│ └── bootstrap-datetimepicker
│ │ └── js
│ │ └── locales
│ │ ├── bootstrap-datetimepicker.ja.js
│ │ ├── bootstrap-datetimepicker.zh-CN.js
│ │ ├── bootstrap-datetimepicker.zh-TW.js
│ │ ├── bootstrap-datetimepicker.hr.js
│ │ ├── bootstrap-datetimepicker.ko.js
│ │ ├── bootstrap-datetimepicker.id.js
│ │ ├── bootstrap-datetimepicker.ua.js
│ │ ├── bootstrap-datetimepicker.he.js
│ │ ├── bootstrap-datetimepicker.ms.js
│ │ ├── bootstrap-datetimepicker.no.js
│ │ ├── bootstrap-datetimepicker.ca.js
│ │ ├── bootstrap-datetimepicker.da.js
│ │ ├── bootstrap-datetimepicker.el.js
│ │ └── bootstrap-datetimepicker.rs.js
├── robots.txt
├── favicon.ico
├── images
│ ├── gavel.jpg
│ ├── pattern.png
│ ├── struktur.jpg
│ ├── daftar-staff.png
│ ├── transparent.png
│ ├── slide
│ │ ├── DSC_0089.jpg
│ │ ├── DSC_0147.jpg
│ │ └── DSC_0151.jpg
│ ├── logo
│ │ └── logo-kejari.jpg
│ └── wallpaper
│ │ ├── wallpaper.jpg
│ │ ├── bali-237196_1280.jpg
│ │ ├── bromo-197964_1280.jpg
│ │ ├── track-362874_1280.jpg
│ │ ├── train-213367_1280.jpg
│ │ ├── walls-201501_1280.jpg
│ │ ├── flower-606402_1280.jpg
│ │ ├── volcano-16912_1280.jpg
│ │ ├── pacu-jawi-201497_1280.jpg
│ │ ├── mount-merapi-113620_1280.jpg
│ │ ├── 150738-indonesia-hd-wallpaper.jpg
│ │ └── bromo-tengger-java-indonesia-wallpaper-for-2560x1440-hdtv-1666-27.jpg
├── css
│ ├── print
│ │ ├── portrait.css
│ │ └── landscape.css
│ └── app.css
├── .htaccess
└── compiled
│ └── app.js
├── resources
├── assets
│ └── .gitkeep
├── views
│ ├── framework
│ │ └── maintenance.php
│ ├── frontend
│ │ ├── profile.blade.php
│ │ ├── organization.blade.php
│ │ ├── statistic
│ │ │ ├── year.blade.php
│ │ │ └── tab.blade.php
│ │ └── postByCaseType.blade.php
│ ├── layouts
│ │ ├── admin
│ │ │ ├── full.blade.php
│ │ │ ├── empty.blade.php
│ │ │ └── admin-full.blade.php
│ │ └── elements
│ │ │ └── footer.blade.php
│ ├── backend
│ │ ├── default
│ │ │ └── index.blade.php
│ │ ├── cases
│ │ │ ├── form
│ │ │ │ ├── 203.blade.php
│ │ │ │ └── 202.blade.php
│ │ │ ├── tab.blade.php
│ │ │ └── create.blade.php
│ │ ├── dashboard
│ │ │ └── index.blade.php
│ │ ├── officers
│ │ │ └── tab.blade.php
│ │ └── templates
│ │ │ └── index.blade.php
│ └── emails
│ │ └── auth
│ │ └── password.blade.php
└── lang
│ ├── en
│ └── pagination.php
│ └── id
│ ├── pagination.php
│ └── flash
│ └── case.php
├── .gitattributes
├── storage
├── .gitignore
├── app
│ └── .gitignore
├── debugbar
│ └── .gitignore
├── logs
│ └── .gitignore
└── framework
│ ├── cache
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── workbench
└── eendonesia
│ ├── dekor
│ ├── public
│ │ ├── .gitkeep
│ │ ├── font-awesome
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ └── fontawesome-webfont.woff
│ │ │ ├── less
│ │ │ │ ├── fixed-width.less
│ │ │ │ ├── bordered-pulled.less
│ │ │ │ ├── larger.less
│ │ │ │ ├── core.less
│ │ │ │ ├── list.less
│ │ │ │ ├── font-awesome.less
│ │ │ │ ├── stacked.less
│ │ │ │ ├── spinning.less
│ │ │ │ ├── rotated-flipped.less
│ │ │ │ └── path.less
│ │ │ └── scss
│ │ │ │ ├── _fixed-width.scss
│ │ │ │ ├── _bordered-pulled.scss
│ │ │ │ ├── _larger.scss
│ │ │ │ ├── _core.scss
│ │ │ │ ├── _list.scss
│ │ │ │ ├── font-awesome.scss
│ │ │ │ ├── _stacked.scss
│ │ │ │ ├── _spinning.scss
│ │ │ │ └── _path.scss
│ │ └── bootstrap
│ │ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ │ └── js
│ │ │ └── npm.js
│ ├── tests
│ │ └── .gitkeep
│ ├── src
│ │ ├── config
│ │ │ ├── .gitkeep
│ │ │ └── config.php
│ │ ├── lang
│ │ │ └── .gitkeep
│ │ ├── views
│ │ │ ├── .gitkeep
│ │ │ └── layouts
│ │ │ │ └── full.blade.php
│ │ ├── controllers
│ │ │ └── .gitkeep
│ │ └── migrations
│ │ │ └── .gitkeep
│ ├── .gitignore
│ ├── vendor
│ │ ├── composer
│ │ │ ├── autoload_psr4.php
│ │ │ ├── autoload_classmap.php
│ │ │ └── autoload_namespaces.php
│ │ └── autoload.php
│ ├── .travis.yml
│ ├── composer.json
│ └── phpunit.xml
│ ├── gapura
│ ├── public
│ │ └── .gitkeep
│ ├── tests
│ │ └── .gitkeep
│ ├── src
│ │ ├── config
│ │ │ ├── .gitkeep
│ │ │ └── config.php
│ │ ├── lang
│ │ │ └── .gitkeep
│ │ ├── views
│ │ │ ├── .gitkeep
│ │ │ ├── home.blade.php
│ │ │ ├── register_success.blade.php
│ │ │ └── login.blade.php
│ │ ├── controllers
│ │ │ └── .gitkeep
│ │ ├── migrations
│ │ │ └── .gitkeep
│ │ └── Eendonesia
│ │ │ └── Gapura
│ │ │ ├── Gapura.php
│ │ │ ├── Repository
│ │ │ └── RepositoryInterface.php
│ │ │ └── Requests
│ │ │ └── Login.php
│ ├── vendor
│ │ ├── composer
│ │ │ ├── autoload_psr4.php
│ │ │ ├── autoload_namespaces.php
│ │ │ └── autoload_classmap.php
│ │ └── autoload.php
│ ├── .travis.yml
│ ├── phpunit.xml
│ └── composer.json
│ ├── skrip
│ ├── public
│ │ └── .gitkeep
│ ├── tests
│ │ └── .gitkeep
│ ├── src
│ │ ├── config
│ │ │ ├── .gitkeep
│ │ │ └── config.php
│ │ ├── lang
│ │ │ └── .gitkeep
│ │ ├── views
│ │ │ └── .gitkeep
│ │ ├── controllers
│ │ │ └── .gitkeep
│ │ ├── migrations
│ │ │ └── .gitkeep
│ │ └── Eendonesia
│ │ │ └── Skrip
│ │ │ └── Post
│ │ │ ├── RepositoryInterface.php
│ │ │ └── Form.php
│ ├── vendor
│ │ ├── composer
│ │ │ ├── autoload_psr4.php
│ │ │ ├── autoload_namespaces.php
│ │ │ └── autoload_classmap.php
│ │ └── autoload.php
│ ├── .travis.yml
│ ├── composer.json
│ └── phpunit.xml
│ ├── wilayah
│ ├── tests
│ │ └── .gitkeep
│ ├── public
│ │ └── .gitkeep
│ ├── src
│ │ ├── config
│ │ │ └── .gitkeep
│ │ ├── lang
│ │ │ └── .gitkeep
│ │ ├── views
│ │ │ └── .gitkeep
│ │ ├── controllers
│ │ │ └── .gitkeep
│ │ ├── migrations
│ │ │ ├── .gitkeep
│ │ │ └── 2014_12_16_214115_import_data_wilayah.php
│ │ └── Eendonesia
│ │ │ └── Wilayah
│ │ │ ├── Wilayah.php
│ │ │ ├── Desa.php
│ │ │ ├── Provinsi.php
│ │ │ ├── Kecamatan.php
│ │ │ └── Kabupaten.php
│ ├── vendor
│ │ ├── composer
│ │ │ ├── autoload_psr4.php
│ │ │ ├── autoload_namespaces.php
│ │ │ └── autoload_classmap.php
│ │ └── autoload.php
│ ├── .travis.yml
│ ├── composer.json
│ └── phpunit.xml
│ └── moderator
│ ├── public
│ └── .gitkeep
│ ├── src
│ ├── lang
│ │ └── .gitkeep
│ ├── config
│ │ ├── .gitkeep
│ │ └── config.php
│ ├── views
│ │ ├── .gitkeep
│ │ ├── groups
│ │ │ ├── create.blade.php
│ │ │ └── edit.blade.php
│ │ ├── resources
│ │ │ ├── create.blade.php
│ │ │ └── edit.blade.php
│ │ └── layouts
│ │ │ └── default.blade.php
│ ├── controllers
│ │ └── .gitkeep
│ ├── migrations
│ │ └── .gitkeep
│ └── Eendonesia
│ │ └── Moderator
│ │ ├── Moderator.php
│ │ ├── RoleTrait.php
│ │ ├── Models
│ │ ├── Resource.php
│ │ ├── User.php
│ │ └── Group.php
│ │ └── FormRequests
│ │ ├── Group.php
│ │ └── Resource.php
│ ├── tests
│ └── .gitkeep
│ ├── vendor
│ ├── composer
│ │ ├── autoload_psr4.php
│ │ └── autoload_namespaces.php
│ └── autoload.php
│ ├── .travis.yml
│ ├── phpunit.xml
│ └── composer.json
├── Procfile
├── .gitignore
├── .env.example
├── tests
├── ExampleTest.php
└── TestCase.php
├── server.php
├── package.json
└── phpunit.xml
/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Http/Requests/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/config/packages/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/packages/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/public/info.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/storage/.gitignore:
--------------------------------------------------------------------------------
1 | laravel.log
--------------------------------------------------------------------------------
/config/packages/eendonesia/gapura/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/tests/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/public/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/tests/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/public/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/tests/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/tests/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/custom/block.less:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/vendor/select2/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 |
3 |
--------------------------------------------------------------------------------
/storage/debugbar/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/src/config/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/src/config/config.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/src/lang/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/src/views/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/config/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/lang/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/views/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/public/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/lang/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/tests/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/src/config/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/src/lang/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/src/views/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/public/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/src/config/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/src/lang/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/src/views/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/src/controllers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/src/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/controllers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/config/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/views/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/src/controllers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/src/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/src/controllers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/src/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Procfile:
--------------------------------------------------------------------------------
1 | web: vendor/bin/heroku-php-apache2 public
2 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/controllers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/views/framework/maintenance.php:
--------------------------------------------------------------------------------
1 | Be right back!
2 |
--------------------------------------------------------------------------------
/config/slide.php:
--------------------------------------------------------------------------------
1 | 8000
5 | ];
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/config/preference.php:
--------------------------------------------------------------------------------
1 | 15 * 60 * 1000,
5 | ];
--------------------------------------------------------------------------------
/public/images/gavel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/gavel.jpg
--------------------------------------------------------------------------------
/public/css/print/portrait.css:
--------------------------------------------------------------------------------
1 | @media print {
2 | @page {
3 | size: portrait;
4 | }
5 | }
--------------------------------------------------------------------------------
/public/images/pattern.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/pattern.png
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | composer.phar
3 | composer.lock
4 | .DS_Store
5 |
--------------------------------------------------------------------------------
/config/pagination.php:
--------------------------------------------------------------------------------
1 | env('PAGINATION_PER_PAGE', 15)
5 | ];
--------------------------------------------------------------------------------
/public/images/struktur.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/struktur.jpg
--------------------------------------------------------------------------------
/public/images/daftar-staff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/daftar-staff.png
--------------------------------------------------------------------------------
/public/images/transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/transparent.png
--------------------------------------------------------------------------------
/public/vendor/bootstrap-daterangepicker/.gitignore:
--------------------------------------------------------------------------------
1 | bower_components
2 | *.sublime-workspace
3 | *.sublime-project
--------------------------------------------------------------------------------
/public/images/slide/DSC_0089.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/slide/DSC_0089.jpg
--------------------------------------------------------------------------------
/public/images/slide/DSC_0147.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/slide/DSC_0147.jpg
--------------------------------------------------------------------------------
/public/images/slide/DSC_0151.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/slide/DSC_0151.jpg
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/custom/checklist.less:
--------------------------------------------------------------------------------
1 | .checklist-direction-suspend {
2 | color: @brand-danger;
3 | }
--------------------------------------------------------------------------------
/public/vendor/select2/select2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/select2/select2.png
--------------------------------------------------------------------------------
/resources/views/frontend/profile.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.frontend.frontend')
2 | @section('content')
3 | @stop
4 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/src/config/config.php:
--------------------------------------------------------------------------------
1 | 'skrip'
5 | ];
6 |
--------------------------------------------------------------------------------
/public/images/logo/logo-kejari.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/logo/logo-kejari.jpg
--------------------------------------------------------------------------------
/public/vendor/select2/select2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/select2/select2x2.png
--------------------------------------------------------------------------------
/resources/views/frontend/organization.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.frontend.frontend')
2 | @section('content')
3 | @stop
4 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/config/config.php:
--------------------------------------------------------------------------------
1 | 'moderator'
5 | ];
6 |
--------------------------------------------------------------------------------
/public/images/wallpaper/wallpaper.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/images/wallpaper/wallpaper.jpg
--------------------------------------------------------------------------------
/public/vendor/slide/images/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/slide/images/loader.gif
--------------------------------------------------------------------------------
/public/vendor/slide/images/pattern.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/slide/images/pattern.png
--------------------------------------------------------------------------------
/storage/framework/.gitignore:
--------------------------------------------------------------------------------
1 | routes.php
2 | compiled.php
3 | services.json
4 | events.scanned.php
5 | routes.scanned.php
6 |
--------------------------------------------------------------------------------
/public/vendor/bigvideo/css/bigvideo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/bigvideo/css/bigvideo.png
--------------------------------------------------------------------------------
/public/vendor/redactor/redactor-font.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/redactor/redactor-font.eot
--------------------------------------------------------------------------------
/public/vendor/ionicons/fonts/ionicons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/ionicons/fonts/ionicons.eot
--------------------------------------------------------------------------------
/public/vendor/ionicons/fonts/ionicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/ionicons/fonts/ionicons.ttf
--------------------------------------------------------------------------------
/public/vendor/ionicons/fonts/ionicons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/ionicons/fonts/ionicons.woff
--------------------------------------------------------------------------------
/public/vendor/select2/select2-spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/select2/select2-spinner.gif
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/Eendonesia/Gapura/Gapura.php:
--------------------------------------------------------------------------------
1 |
5 | @yield('content-admin')
6 |
7 | @stop
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/packages/eendonesia/dekor/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/packages/eendonesia/dekor/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/center-block.less:
--------------------------------------------------------------------------------
1 | // Center-align a block level element
2 |
3 | .center-block() {
4 | display: block;
5 | margin-left: auto;
6 | margin-right: auto;
7 | }
8 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/text-emphasis.less:
--------------------------------------------------------------------------------
1 | // Typography
2 |
3 | .text-emphasis-variant(@color) {
4 | color: @color;
5 | a&:hover {
6 | color: darken(@color, 10%);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/config/packages/eendonesia/gapura/config.php:
--------------------------------------------------------------------------------
1 | 'gapura',
5 | 'default_guest' => 'frontend.search',
6 | 'default_auth' => 'frontend.search',
7 | ];
8 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/packages/eendonesia/dekor/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/vendor/slide/images/large/grand_canyon_of_the_yellowstone-3840x2160.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/public/vendor/slide/images/large/grand_canyon_of_the_yellowstone-3840x2160.jpg
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/workbench/eendonesia/dekor/public/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/workbench/eendonesia/dekor/public/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/javanlabs/palapa/HEAD/workbench/eendonesia/dekor/public/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/app/Http/Requests/Request.php:
--------------------------------------------------------------------------------
1 | 'gapura',
5 | 'default_guest' => 'gapura.login',
6 | 'default_auth' => 'gapura.home',
7 | 'view_login' => 'gapura::login',
8 | ];
9 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/vendor/composer/autoload_psr4.php:
--------------------------------------------------------------------------------
1 |
5 | Silakan pilih menu disamping.
6 |
7 | @stop
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/vendor/autoload.php:
--------------------------------------------------------------------------------
1 | = 1.7.1"
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/custom/log.less:
--------------------------------------------------------------------------------
1 | #page-log-index {
2 | .list-log {
3 | .name {
4 | font-weight: 600;
5 | color: @gray;
6 | border-bottom: 1px dotted @gray;
7 | }
8 | td {
9 | padding: 15px 30px;
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/progress-bar.less:
--------------------------------------------------------------------------------
1 | // Progress bars
2 |
3 | .progress-bar-variant(@color) {
4 | background-color: @color;
5 |
6 | // Deprecated parent class requirement as of v3.2.0
7 | .progress-striped & {
8 | #gradient > .striped();
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/custom/login.less:
--------------------------------------------------------------------------------
1 | body.login {
2 | background: #000 url("") no-repeat center center;
3 |
4 | .navbar-header {
5 | background-color: #fff;
6 | opacity: .8;
7 | }
8 |
9 | footer, footer a {
10 | color:#fff;
11 | opacity: .8;
12 | }
13 | }
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 |
3 | php:
4 | - 5.4
5 | - 5.5
6 | - 5.6
7 | - hhvm
8 |
9 | before_script:
10 | - travis_retry composer self-update
11 | - travis_retry composer install --prefer-source --no-interaction --dev
12 |
13 | script: phpunit
14 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 |
3 | php:
4 | - 5.4
5 | - 5.5
6 | - 5.6
7 | - hhvm
8 |
9 | before_script:
10 | - travis_retry composer self-update
11 | - travis_retry composer install --prefer-source --no-interaction --dev
12 |
13 | script: phpunit
14 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 |
3 | php:
4 | - 5.4
5 | - 5.5
6 | - 5.6
7 | - hhvm
8 |
9 | before_script:
10 | - travis_retry composer self-update
11 | - travis_retry composer install --prefer-source --no-interaction --dev
12 |
13 | script: phpunit
14 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 |
3 | php:
4 | - 5.4
5 | - 5.5
6 | - 5.6
7 | - hhvm
8 |
9 | before_script:
10 | - travis_retry composer self-update
11 | - travis_retry composer install --prefer-source --no-interaction --dev
12 |
13 | script: phpunit
14 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 |
3 | php:
4 | - 5.4
5 | - 5.5
6 | - 5.6
7 | - hhvm
8 |
9 | before_script:
10 | - travis_retry composer self-update
11 | - travis_retry composer install --prefer-source --no-interaction --dev
12 |
13 | script: phpunit
14 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/views/home.blade.php:
--------------------------------------------------------------------------------
1 | @extends('dekor::layouts.full')
2 |
3 | @section('content')
4 |
5 |
6 |
Welcome Home
7 |
{{ Auth::user()->email }}
8 |
Logout
9 |
10 |
11 | @stop
12 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/Eendonesia/Moderator/RoleTrait.php:
--------------------------------------------------------------------------------
1 | belongsToMany('Eendonesia\Moderator\Models\Group', 'acl_users_groups');
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Backend/BackendController.php:
--------------------------------------------------------------------------------
1 | array($baseDir . '/src'),
10 | );
11 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/vendor/composer/autoload_namespaces.php:
--------------------------------------------------------------------------------
1 | array($baseDir . '/src'),
10 | );
11 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/vendor/composer/autoload_namespaces.php:
--------------------------------------------------------------------------------
1 | array($baseDir . '/src'),
10 | );
11 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/vendor/composer/autoload_namespaces.php:
--------------------------------------------------------------------------------
1 | array($baseDir . '/src'),
10 | );
11 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/reset-filter.less:
--------------------------------------------------------------------------------
1 | // Reset filters for IE
2 | //
3 | // When you need to remove a gradient background, do not forget to use this to reset
4 | // the IE filter for IE9 and below.
5 |
6 | .reset-filter() {
7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
8 | }
9 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/vendor/composer/autoload_namespaces.php:
--------------------------------------------------------------------------------
1 | array($baseDir . '/src'),
10 | );
11 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/nav-divider.less:
--------------------------------------------------------------------------------
1 | // Horizontal dividers
2 | //
3 | // Dividers (basically an hr) within dropdowns and nav lists
4 |
5 | .nav-divider(@color: #e5e5e5) {
6 | height: 1px;
7 | margin: ((@line-height-computed / 2) - 1) 0;
8 | overflow: hidden;
9 | background-color: @color;
10 | }
11 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/views/register_success.blade.php:
--------------------------------------------------------------------------------
1 | @extends('dekor::layouts.full')
2 |
3 | @section('content')
4 |
5 |
6 |
Thank You For Your Registration
7 |
We have sent an email containing activation link. Please check your inbox.
8 |
9 |
10 | @stop
11 |
--------------------------------------------------------------------------------
/app/AuditTrail/Activity/RepositoryInterface.php:
--------------------------------------------------------------------------------
1 | rows(4) }}
2 | {{ BootForm::select('Kategori', 'category')->options($categories) }}
3 | {{ BootForm::select('Yang Ditugaskan', 'penyidik_id')->options($penyidikLookup) }}
4 | {{ BootForm::select('Staff Administrasi', 'staff_id')->options($staffLookup) }}
5 |
6 |
--------------------------------------------------------------------------------
/tests/ExampleTest.php:
--------------------------------------------------------------------------------
1 | call('GET', '/');
13 |
14 | $this->assertEquals(200, $response->getStatusCode());
15 | }
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/vendor/composer/autoload_classmap.php:
--------------------------------------------------------------------------------
1 | $baseDir . '/src/migrations/2014_12_16_214115_import_data_wilayah.php',
10 | );
11 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/custom/admin.less:
--------------------------------------------------------------------------------
1 | #page-admin {
2 | margin-top: 50px;
3 |
4 | aside {
5 | .fa {
6 | display: inline-block;
7 | width: 50px;
8 | text-align: center;
9 | }
10 | }
11 | .list-group {
12 | border: 0 none;
13 | .list-group-item {
14 | padding: 20px 20px 20px 10px;
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/alerts.less:
--------------------------------------------------------------------------------
1 | // Alerts
2 |
3 | .alert-variant(@background; @border; @text-color) {
4 | background-color: @background;
5 | border-color: @border;
6 | color: @text-color;
7 |
8 | hr {
9 | border-top-color: darken(@border, 5%);
10 | }
11 | .alert-link {
12 | color: darken(@text-color, 10%);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/resources/views/frontend/statistic/year.blade.php:
--------------------------------------------------------------------------------
1 | {{ Form::open(['id' => 'formYear', 'method' => 'GET', 'style' => 'display:inline-block']) }}
2 | {{ Form::select('year', array_combine(range(date('Y'), date('Y') - 3), range(date('Y'), date('Y') - 3)), $year, ['id' => 'selectYear']) }}
3 | @if(isset($type))
4 | {{ Form::hidden('type', $type) }}
5 | @endif
6 | {{ Form::close() }}
7 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/src/Eendonesia/Wilayah/Desa.php:
--------------------------------------------------------------------------------
1 | belongsTo('Eendonesia\Wilayah\Kecamatan', 'id_kabupaten');
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/src/Eendonesia/Skrip/Post/RepositoryInterface.php:
--------------------------------------------------------------------------------
1 | hasMany('Eendonesia\Wilayah\Kabupaten', 'id_provinsi');
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | rows(4) }}
2 | {{ BootForm::select('Kategori', 'category')->options($categories) }}
3 | {{--{{ BootForm::textarea('Pasal yang disangkakan', 'pasal')->rows(3) }}--}}
4 | {{ BootForm::select('Yang Ditugaskan', 'penyidik_id')->options($penyidikLookup) }}
5 | {{ BootForm::select('Staff Administrasi', 'staff_id')->options($staffLookup) }}
6 |
7 |
--------------------------------------------------------------------------------
/resources/views/emails/auth/password.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Password Reset
8 |
9 |
10 | To reset your password, complete this form: {{ url('password/reset', [$token]) }}.
11 |
12 | This link will expire in {{ config('auth.reminder.expire', 60) }} minutes.
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/public/.htaccess:
--------------------------------------------------------------------------------
1 |
2 |
3 | Options -MultiViews
4 |
5 |
6 | RewriteEngine On
7 |
8 | # Redirect Trailing Slashes...
9 | RewriteRule ^(.*)/$ /$1 [L,R=301]
10 |
11 | # Handle Front Controller...
12 | RewriteCond %{REQUEST_FILENAME} !-d
13 | RewriteCond %{REQUEST_FILENAME} !-f
14 | RewriteRule ^ index.php [L]
15 |
16 |
--------------------------------------------------------------------------------
/app/Providers/EventServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
14 | 'EventListener',
15 | ],
16 | ];
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | make('Illuminate\Contracts\Console\Kernel')->bootstrap();
15 |
16 | return $app;
17 | }
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/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 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .@{fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/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 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/resources/views/layouts/elements/footer.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | © {{ date('Y') }} Kejaksaan Negeri Jember
10 |
11 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/nav-vertical-align.less:
--------------------------------------------------------------------------------
1 | // Navbar vertical align
2 | //
3 | // Vertically center elements in the navbar.
4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
5 |
6 | .navbar-vertical-align(@element-height) {
7 | margin-top: ((@navbar-height - @element-height) / 2);
8 | margin-bottom: ((@navbar-height - @element-height) / 2);
9 | }
10 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/vendor/composer/autoload_classmap.php:
--------------------------------------------------------------------------------
1 | $baseDir . '/src/migrations/2014_12_07_233747_create_table_posts.php',
10 | 'Eendonesia\\Skrip\\Controllers\\PostsController' => $baseDir . '/src/controllers/PostsController.php',
11 | );
12 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Backend/DefaultController.php:
--------------------------------------------------------------------------------
1 | route('gapura.login');
14 | }
15 |
16 | return view('backend.default.index');
17 | }
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .@{fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/public/vendor/bootflat/scss/.csslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "adjoining-classes": false,
3 | "box-sizing": false,
4 | "box-model": false,
5 | "compatible-vendor-prefixes": false,
6 | "fallback-colors": false,
7 | "font-sizes": false,
8 | "important": false,
9 | "known-properties": false,
10 | "outline-none": false,
11 | "qualified-headings": false,
12 | "unique-headings": false,
13 | "universal-selector": false,
14 | "unqualified-attributes": false
15 | }
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/responsive-visibility.less:
--------------------------------------------------------------------------------
1 | // Responsive utilities
2 |
3 | //
4 | // More easily include all the states for responsive-utilities.less.
5 | .responsive-visibility() {
6 | display: block !important;
7 | table& { display: table; }
8 | tr& { display: table-row !important; }
9 | th&,
10 | td& { display: table-cell !important; }
11 | }
12 |
13 | .responsive-invisibility() {
14 | display: none !important;
15 | }
16 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .@{fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/vendor/composer/autoload_classmap.php:
--------------------------------------------------------------------------------
1 | $baseDir . '/src/controllers/GapuraController.php',
10 | 'GapuraCreateUsersTable' => $baseDir . '/src/migrations/2014_12_02_075618_gapura_create_users_table.php',
11 | );
12 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/Eendonesia/Moderator/Models/Resource.php:
--------------------------------------------------------------------------------
1 | belongsToMany('Eendonesia\Moderator\Models\Group', 'acl_permissions');
14 | }
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-daterangepicker/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "bootstrap-daterangepicker",
3 | "version": "1.3.15",
4 | "main": [
5 | "daterangepicker.js",
6 | "daterangepicker-bs3.css"
7 | ],
8 | "ignore": [
9 | "**/.*",
10 | "node_modules",
11 | "bower_components",
12 | "test",
13 | "tests",
14 | "moment.js",
15 | "moment.min.js"
16 | ],
17 | "dependencies": {
18 | "jquery": ">=1.10",
19 | "moment": "~2.8.0"
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/resources/views/layouts/admin/empty.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.full.full')
2 |
3 | @section('body')
4 |
11 |
12 |
13 | @yield('content-admin')
14 |
15 | @stop
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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/packages/eendonesia/dekor/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/Eendonesia/Gapura/Repository/RepositoryInterface.php:
--------------------------------------------------------------------------------
1 | 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/vendor/font-awesome/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 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 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/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 |
--------------------------------------------------------------------------------
/public/vendor/redactor/plugins/underline.js:
--------------------------------------------------------------------------------
1 | if (!RedactorPlugins) var RedactorPlugins = {};
2 |
3 | RedactorPlugins.underline = function()
4 | {
5 | return {
6 | init: function()
7 | {
8 | var button = this.button.addAfter('italic', 'underline', 'Underline');
9 | this.button.addCallback(button, this.underline.format);
10 | },
11 | format: function()
12 | {
13 | this.inline.format('u');
14 | }
15 | };
16 | };
17 |
--------------------------------------------------------------------------------
/resources/views/backend/dashboard/index.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.full.full')
2 |
3 | @section('breadcrumb')
4 | Statistik
5 | @stop
6 |
7 | @section('content')
8 | Statistik Kasus
9 |
14 | @stop
15 |
--------------------------------------------------------------------------------
/resources/views/backend/cases/tab.blade.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/views/backend/officers/tab.blade.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/views/layouts/admin/admin-full.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.full.full')
2 |
3 | @section('breadcrumb')
4 | Backend
5 | @stop
6 |
7 | @section('breadcrumb-subtitle')
8 |
9 | @yield('breadcrumb-subtitle-text')
10 | @stop
11 |
12 | @section('content')
13 |
14 | @yield('content-admin')
15 |
16 | @stop
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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/packages/eendonesia/dekor/font-awesome/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 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 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 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 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/scss/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.2.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";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "spinning";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 |
--------------------------------------------------------------------------------
/app/Officer/RepositoryInterface.php:
--------------------------------------------------------------------------------
1 | hasMany('Eendonesia\Wilayah\Desa', 'id_kecamatan');
12 | }
13 |
14 | protected function kabupaten()
15 | {
16 | return $this->belongsTo('Eendonesia\Wilayah\Kabupaten', 'id_kabupaten');
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/src/Eendonesia/Wilayah/Kabupaten.php:
--------------------------------------------------------------------------------
1 | hasMany('Eendonesia\Wilayah\Kecamatan', 'id_kabupaten');
12 | }
13 |
14 | protected function provinsi()
15 | {
16 | return $this->belongsTo('Eendonesia\Wilayah\Provinsi', 'id_provinsi');
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/public/compiled/app.js:
--------------------------------------------------------------------------------
1 | var BLOCKUI_STYLE = {
2 | message: 'Loading...',
3 | css: {
4 | border: 'none',
5 | padding: '15px',
6 | backgroundColor: '#000',
7 | '-webkit-border-radius': '10px',
8 | '-moz-border-radius': '10px',
9 | opacity: 1,
10 | color: '#fff',
11 | 'text-transform': 'uppercase',
12 | 'font-size': '1.5em',
13 | 'font-weight': 700,
14 | 'letter-spacing': '2.5px'
15 | },
16 | overlayCSS: {
17 | opacity: 0.8
18 | }
19 | };
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/Eendonesia/Moderator/Models/User.php:
--------------------------------------------------------------------------------
1 | belongsToMany('Eendonesia\Moderator\Models\Group', 'acl_users_groups');
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/app/Http/Requests/LoginRequest.php:
--------------------------------------------------------------------------------
1 | 'required', 'password' => 'required',
14 | ];
15 | }
16 |
17 | /**
18 | * Determine if the user is authorized to make this request.
19 | *
20 | * @return bool
21 | */
22 | public function authorize()
23 | {
24 | return true;
25 | }
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/js/npm.js:
--------------------------------------------------------------------------------
1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
2 | require('../../js/transition.js')
3 | require('../../js/alert.js')
4 | require('../../js/button.js')
5 | require('../../js/carousel.js')
6 | require('../../js/collapse.js')
7 | require('../../js/dropdown.js')
8 | require('../../js/modal.js')
9 | require('../../js/tooltip.js')
10 | require('../../js/popover.js')
11 | require('../../js/scrollspy.js')
12 | require('../../js/tab.js')
13 | require('../../js/affix.js')
--------------------------------------------------------------------------------
/app/Setting.php:
--------------------------------------------------------------------------------
1 | $value)
18 | {
19 | $this->updateOrCreate(['key' => $key], ['value' => $value]);
20 | }
21 |
22 | return true;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/app/Cases/Form.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | ];
17 | }
18 |
19 | /**
20 | * Determine if the user is authorized to make this request.
21 | *
22 | * @return bool
23 | */
24 | public function authorize()
25 | {
26 | return true;
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/.csslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "adjoining-classes": false,
3 | "box-sizing": false,
4 | "box-model": false,
5 | "compatible-vendor-prefixes": false,
6 | "floats": false,
7 | "font-sizes": false,
8 | "gradients": false,
9 | "important": false,
10 | "known-properties": false,
11 | "outline-none": false,
12 | "qualified-headings": false,
13 | "regex-selectors": false,
14 | "shorthand": false,
15 | "text-indent": false,
16 | "unique-headings": false,
17 | "universal-selector": false,
18 | "unqualified-attributes": false
19 | }
20 |
--------------------------------------------------------------------------------
/server.php:
--------------------------------------------------------------------------------
1 |
5 | Create Group
6 | {{ BootForm::open()->action(route('moderator.groups.store')) }}
7 |
8 | {{ BootForm::text('Name', 'name') }}
9 | {{ BootForm::text('Description', 'description') }}
10 | {{ BootForm::submit('Submit') }}
11 | {{ BootForm::close() }}
12 |
13 | @stop
14 |
--------------------------------------------------------------------------------
/public/css/app.css:
--------------------------------------------------------------------------------
1 | .table thead th {
2 | background-color: #f5f5f5;
3 | font-weight: 400;
4 | font-size: .9em;
5 | text-transform: uppercase;
6 | }
7 |
8 | .progress-bar-{
9 | background-color: #f5f5f5;
10 | }
11 |
12 | #modalSelectCase .list-group-item .fa-check{
13 | color: #ddd;
14 | margin-right: 5px;
15 | }
16 | #modalSelectCase .list-group-item.active {
17 | background-color: #3bafda;
18 | color: #fff;
19 | }
20 | #modalSelectCase .list-group-item.active .fa-check {
21 | color: #fff;
22 | }
23 |
24 | .panel fieldset{margin-bottom: 40px}
25 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/pagination.less:
--------------------------------------------------------------------------------
1 | // Pagination
2 |
3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
4 | > li {
5 | > a,
6 | > span {
7 | padding: @padding-vertical @padding-horizontal;
8 | font-size: @font-size;
9 | }
10 | &:first-child {
11 | > a,
12 | > span {
13 | .border-left-radius(@border-radius);
14 | }
15 | }
16 | &:last-child {
17 | > a,
18 | > span {
19 | .border-right-radius(@border-radius);
20 | }
21 | }
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/app/Cases/WitnessForm.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | ];
17 | }
18 |
19 | /**
20 | * Determine if the user is authorized to make this request.
21 | *
22 | * @return bool
23 | */
24 | public function authorize()
25 | {
26 | return true;
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/border-radius.less:
--------------------------------------------------------------------------------
1 | // Single side border-radius
2 |
3 | .border-top-radius(@radius) {
4 | border-top-right-radius: @radius;
5 | border-top-left-radius: @radius;
6 | }
7 | .border-right-radius(@radius) {
8 | border-bottom-right-radius: @radius;
9 | border-top-right-radius: @radius;
10 | }
11 | .border-bottom-radius(@radius) {
12 | border-bottom-right-radius: @radius;
13 | border-bottom-left-radius: @radius;
14 | }
15 | .border-left-radius(@radius) {
16 | border-bottom-left-radius: @radius;
17 | border-top-left-radius: @radius;
18 | }
19 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/views/resources/create.blade.php:
--------------------------------------------------------------------------------
1 | @extends('moderator::layouts.default')
2 |
3 | @section('content')
4 |
5 |
Create Resource
6 | {{ BootForm::open()->action(route('moderator.resources.store')) }}
7 |
8 | {{ BootForm::text('Name', 'name') }}
9 | {{ BootForm::text('Description', 'description') }}
10 | {{ BootForm::submit('Submit') }}
11 | {{ BootForm::close() }}
12 |
13 | @stop
14 |
--------------------------------------------------------------------------------
/app/Cases/SuspectsForm.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | ];
17 | }
18 |
19 | /**
20 | * Determine if the user is authorized to make this request.
21 | *
22 | * @return bool
23 | */
24 | public function authorize()
25 | {
26 | return true;
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/app/Lookup/Lookup.php:
--------------------------------------------------------------------------------
1 | name;
22 | }
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/app/Sop/RepositoryInterface.php:
--------------------------------------------------------------------------------
1 | =5.4.0",
12 | "illuminate/support": "5.0.*"
13 | },
14 | "autoload": {
15 | "classmap": [
16 | "src/migrations"
17 | ],
18 | "psr-0": {
19 | "Eendonesia\\Dekor\\": "src/"
20 | }
21 | },
22 | "minimum-stability": "stable"
23 | }
24 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/less/font-awesome.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.2.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 "spinning.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 |
--------------------------------------------------------------------------------
/app/Http/Requests/RegisterRequest.php:
--------------------------------------------------------------------------------
1 | 'required|email|unique:users',
14 | 'password' => 'required|confirmed|min:8',
15 | ];
16 | }
17 |
18 | /**
19 | * Determine if the user is authorized to make this request.
20 | *
21 | * @return bool
22 | */
23 | public function authorize()
24 | {
25 | return true;
26 | }
27 |
28 | }
29 |
--------------------------------------------------------------------------------
/database/migrations/2014_12_16_214115_import_data_wilayah.php:
--------------------------------------------------------------------------------
1 | action(route('backend.cases.store')) }}
5 |
6 |
7 |
8 |
9 | Register Perkara {{ $type['name'] }}
10 | @include('backend.cases.form.' . $type['id'])
11 | {{ BootForm::submit('Simpan', 'btn-primary') }}
12 |
13 |
14 | {{ BootForm::close() }}
15 |
16 | @stop
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "eendonesia/wilayah",
3 | "description": "",
4 | "authors": [
5 | {
6 | "name": "Bayu Hendra Winata",
7 | "email": "uyab.exe@gmail.com"
8 | }
9 | ],
10 | "require": {
11 | "php": ">=5.4.0",
12 | "illuminate/support": "5.0.*"
13 | },
14 | "autoload": {
15 | "classmap": [
16 | "src/migrations"
17 | ],
18 | "psr-0": {
19 | "Eendonesia\\Wilayah\\": "src/"
20 | }
21 | },
22 | "minimum-stability": "dev"
23 | }
24 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/bootstrap-custom.less:
--------------------------------------------------------------------------------
1 | @import "bootstrap.less";
2 | @import "custom/header.less";
3 | @import "custom/footer.less";
4 | @import "custom/menu.less";
5 | @import "custom/block.less";
6 | @import "custom/login.less";
7 | @import "custom/post.less";
8 | @import "custom/case.less";
9 | @import "custom/admin.less";
10 | @import "custom/helper.less";
11 | @import "custom/alert.less";
12 | @import "custom/slide.less";
13 | @import "custom/table.less";
14 | @import "custom/home.less";
15 | @import "custom/tab.less";
16 | @import "custom/log.less";
17 | @import "custom/checklist.less";
18 |
19 |
--------------------------------------------------------------------------------
/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
1 | '« Previous',
17 |
18 | 'next' => 'Next »',
19 |
20 | ];
21 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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 |
--------------------------------------------------------------------------------
/app/Model/Form.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | 'content' => 'required',
17 | ];
18 | }
19 |
20 | /**
21 | * Determine if the user is authorized to make this request.
22 | *
23 | * @return bool
24 | */
25 | public function authorize()
26 | {
27 | return true;
28 | }
29 |
30 | }
31 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Korean translation for bootstrap-datepicker
3 | * Gu Youn
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['kr'] = {
7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"],
8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"],
9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"],
10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"],
11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"]
12 | };
13 | }(jQuery));
14 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/src/migrations/2014_12_16_214115_import_data_wilayah.php:
--------------------------------------------------------------------------------
1 | belongsTo('App\Sop\Checklist', 'checklist_id');
10 | }
11 |
12 | public function getNumberAttribute()
13 | {
14 | $checklist = $this->checklist;
15 |
16 | if($checklist && $checklist['number_field'])
17 | {
18 | return $this->parent[$checklist['number_field']];
19 | }
20 |
21 | return $this->attributes['number'];
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/custom/alert.less:
--------------------------------------------------------------------------------
1 | .alert {
2 | padding-left: 40px;
3 | &.alert-danger {
4 | color: #fff;
5 | background-color: @brand-danger;
6 | border: 0 none;
7 | }
8 | }
9 | .bootbox-confirm {
10 | .modal-content{
11 | background-color: @brand-danger;
12 | color: #fff;
13 | }
14 | .modal-footer {
15 | border-top: 0 none;
16 | .btn-primary {
17 | background-color: #fff;
18 | color: @brand-danger;
19 | border: 0 none;
20 | }
21 | .btn-default {
22 | color: #fff;
23 | background-color: transparent;
24 | border: 0 none;
25 | }
26 | }
27 | }
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/views/groups/edit.blade.php:
--------------------------------------------------------------------------------
1 | @extends('moderator::layouts.default')
2 |
3 | @section('content')
4 |
5 |
Edit Group
6 | {{ BootForm::open()->put()->action(route('moderator.groups.update', [$group->id])) }}
7 |
8 | {{ BootForm::text('Name', 'name', $group->name) }}
9 | {{ BootForm::text('Description', 'description', $group->description) }}
10 | {{ BootForm::submit('Update') }}
11 | {{ BootForm::close() }}
12 |
13 | @stop
14 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/Eendonesia/Gapura/Requests/Login.php:
--------------------------------------------------------------------------------
1 | 'required', 'password' => 'required',
16 | ];
17 | }
18 |
19 | /**
20 | * Determine if the user is authorized to make this request.
21 | *
22 | * @return bool
23 | */
24 | public function authorize()
25 | {
26 | return true;
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/views/resources/edit.blade.php:
--------------------------------------------------------------------------------
1 | @extends('moderator::layouts.default')
2 |
3 | @section('content')
4 |
5 |
Edit Resource
6 | {{ BootForm::open()->put()->action(route('moderator.resources.update', [$resource->id])) }}
7 |
8 | {{ BootForm::text('Name', 'name', $resource->name) }}
9 | {{ BootForm::text('Description', 'description', $resource->description) }}
10 | {{ BootForm::submit('Update') }}
11 | {{ BootForm::close() }}
12 |
13 | @stop
14 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/custom/table.less:
--------------------------------------------------------------------------------
1 | .table {
2 | thead {
3 | tr {
4 | th {
5 | background-color: lighten(@gray-lighter, 4%);
6 | border-bottom: 0 none;
7 | }
8 | }
9 | }
10 | }
11 | .table.table-list {
12 | tbody {
13 | tr {
14 | td {
15 | padding-left: 20px;
16 | padding-right: 20px;
17 | .btn-delete {
18 | opacity: 0;
19 | transition: opacity 0.5s ease;
20 | color: @gray-light;
21 | }
22 | }
23 |
24 | &:hover {
25 | td {
26 | .btn-delete {opacity: 1}
27 | }
28 | }
29 | }
30 | }
31 | }
--------------------------------------------------------------------------------
/database/seeds/LookupSeeder.php:
--------------------------------------------------------------------------------
1 | call('PangkatSeeder');
18 | $this->call('JabatanSeeder');
19 | $this->call('JenisKasusSeeder');
20 | $this->call('SopSeeder');
21 | $this->call('TemplateSeeder');
22 |
23 | Model::reguard();
24 | }
25 |
26 | }
27 |
28 | require __DIR__ . '/class/all.php';
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/src/Eendonesia/Skrip/Post/Form.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | // 'content' => 'required',
17 | ];
18 | }
19 |
20 | /**
21 | * Determine if the user is authorized to make this request.
22 | *
23 | * @return bool
24 | */
25 | public function authorize()
26 | {
27 | return true;
28 | }
29 |
30 | }
31 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.gl.js:
--------------------------------------------------------------------------------
1 | ;(function($){
2 | $.fn.datepicker.dates['gl'] = {
3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"],
4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"],
5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"],
6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"],
7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"],
8 | today: "Hoxe",
9 | clear: "Limpar"
10 | };
11 | }(jQuery));
12 |
--------------------------------------------------------------------------------
/app/Cases/Evidence/EvidenceForm.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | ];
17 | }
18 |
19 | /**
20 | * Determine if the user is authorized to make this request.
21 | *
22 | * @return bool
23 | */
24 | public function authorize()
25 | {
26 | return true;
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Japanese translation for bootstrap-datepicker
3 | * Norio Suzuki
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['ja'] = {
7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"],
8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"],
9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"],
10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
12 | today: "今日",
13 | format: "yyyy/mm/dd"
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "eendonesia/skrip",
3 | "description": "",
4 | "authors": [
5 | {
6 | "name": "Bayu Hendra Winata",
7 | "email": "uyab.exe@gmail.com"
8 | }
9 | ],
10 | "require": {
11 | "php": ">=5.4.0",
12 | "illuminate/support": "5.0.*",
13 | "fzaninotto/faker": "1.4.*"
14 | },
15 | "autoload": {
16 | "classmap": [
17 | "src/migrations",
18 | "src/controllers"
19 | ],
20 | "psr-0": {
21 | "Eendonesia\\Skrip\\": "src/"
22 | }
23 | },
24 | "minimum-stability": "dev"
25 | }
26 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
15 | ./tests/
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
15 | ./tests/
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
15 | ./tests/
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/workbench/eendonesia/skrip/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
15 | ./tests/
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/workbench/eendonesia/wilayah/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
15 | ./tests/
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/panels.less:
--------------------------------------------------------------------------------
1 | // Panels
2 |
3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
4 | border-color: @border;
5 |
6 | & > .panel-heading {
7 | color: @heading-text-color;
8 | background-color: @heading-bg-color;
9 | border-color: @heading-border;
10 |
11 | + .panel-collapse > .panel-body {
12 | border-top-color: @border;
13 | }
14 | .badge {
15 | color: @heading-bg-color;
16 | background-color: @heading-text-color;
17 | }
18 | }
19 | & > .panel-footer {
20 | + .panel-collapse > .panel-body {
21 | border-bottom-color: @border;
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "eendonesia/gapura",
3 | "description": "",
4 | "authors": [
5 | {
6 | "name": "Bayu Hendra Winata",
7 | "email": "uyab.exe@gmail.com"
8 | }
9 | ],
10 | "require": {
11 | "php": ">=5.4.0",
12 | "illuminate/support": "5.0.*",
13 | "adamwathan/bootforms": "v0.2"
14 | },
15 | "autoload": {
16 | "classmap": [
17 | "src/migrations",
18 | "src/controllers"
19 | ],
20 | "psr-0": {
21 | "Eendonesia\\Gapura\\": "src/"
22 | }
23 | },
24 | "minimum-stability": "dev"
25 | }
26 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/Eendonesia/Moderator/Models/Group.php:
--------------------------------------------------------------------------------
1 | belongsToMany('User', 'acl_users_groups');
17 | }
18 |
19 | public function resources()
20 | {
21 | return $this->belongsToMany('Eendonesia\Moderator\Models\Resource', 'acl_permissions');
22 | }
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "eendonesia/moderator",
3 | "description": "",
4 | "authors": [
5 | {
6 | "name": "Bayu Hendra Winata",
7 | "email": "uyab.exe@gmail.com"
8 | }
9 | ],
10 | "require": {
11 | "php": ">=5.4.0",
12 | "illuminate/support": "5.0.*",
13 | "illuminate/html": "5.0.*@dev"
14 | },
15 | "autoload": {
16 | "classmap": [
17 | "src/migrations",
18 | "src/controllers"
19 | ],
20 | "psr-0": {
21 | "Eendonesia\\Moderator\\": "src/"
22 | }
23 | },
24 | "minimum-stability": "dev"
25 | }
26 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/Eendonesia/Moderator/FormRequests/Group.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | 'description' => 'required',
17 | ];
18 | }
19 |
20 | /**
21 | * Determine if the user is authorized to make this request.
22 | *
23 | * @return bool
24 | */
25 | public function authorize()
26 | {
27 | return true;
28 | }
29 |
30 | }
31 |
--------------------------------------------------------------------------------
/app/Officer/Form.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | 'nip' => 'required',
17 | ];
18 | }
19 |
20 | /**
21 | * Determine if the user is authorized to make this request.
22 | *
23 | * @return bool
24 | */
25 | public function authorize()
26 | {
27 | return true;
28 | }
29 |
30 | }
31 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/wells.less:
--------------------------------------------------------------------------------
1 | //
2 | // Wells
3 | // --------------------------------------------------
4 |
5 |
6 | // Base class
7 | .well {
8 | min-height: 20px;
9 | padding: 19px;
10 | margin-bottom: 20px;
11 | background-color: @well-bg;
12 | // border: 1px solid @well-border;
13 | border-radius: @border-radius-base;
14 | // .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
15 | blockquote {
16 | border-color: #ddd;
17 | border-color: rgba(0,0,0,.15);
18 | }
19 | }
20 |
21 | // Sizes
22 | .well-lg {
23 | padding: 24px;
24 | border-radius: @border-radius-large;
25 | }
26 | .well-sm {
27 | padding: 9px;
28 | border-radius: @border-radius-small;
29 | }
30 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/Eendonesia/Moderator/FormRequests/Resource.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | 'description' => 'required',
17 | ];
18 | }
19 |
20 | /**
21 | * Determine if the user is authorized to make this request.
22 | *
23 | * @return bool
24 | */
25 | public function authorize()
26 | {
27 | return true;
28 | }
29 |
30 | }
31 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ja.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Japanese translation for bootstrap-datetimepicker
3 | * Norio Suzuki
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['ja'] = {
7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"],
8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"],
9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"],
10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
12 | today: "今日",
13 | suffix: [],
14 | meridiem: []
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "devDependencies": {
3 | "gulp": "^3.8.10",
4 | "gulp-less": "^2.0.1",
5 | "gulp-livereload": "^3.2.0",
6 | "gulp-minify-css": "^0.3.11",
7 | "gulp-rename": "^1.2.0",
8 | "tiny-lr": "^0.1.4"
9 | },
10 | "name": "palapa",
11 | "description": "SOP Monitoring System",
12 | "version": "1.0.0",
13 | "main": "gulpfile.js",
14 | "directories": {
15 | "test": "tests"
16 | },
17 | "scripts": {
18 | "test": "echo \"Error: no test specified\" && exit 1"
19 | },
20 | "repository": {
21 | "type": "git",
22 | "url": "https://uyab@bitbucket.org/ngomik/palapa.git"
23 | },
24 | "author": "Bayu Hendra Winata",
25 | "license": "ISC"
26 | }
27 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.hr.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Croatian localisation
3 | */
4 | ;(function($){
5 | $.fn.datepicker.dates['hr'] = {
6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"],
7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"],
8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"],
9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"],
10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"],
11 | today: "Danas"
12 | };
13 | }(jQuery));
14 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/list-group.less:
--------------------------------------------------------------------------------
1 | // List Groups
2 |
3 | .list-group-item-variant(@state; @background; @color) {
4 | .list-group-item-@{state} {
5 | color: @color;
6 | background-color: @background;
7 |
8 | a& {
9 | color: @color;
10 |
11 | .list-group-item-heading {
12 | color: inherit;
13 | }
14 |
15 | &:hover,
16 | &:focus {
17 | color: @color;
18 | background-color: darken(@background, 5%);
19 | }
20 | &.active,
21 | &.active:hover,
22 | &.active:focus {
23 | color: #fff;
24 | background-color: @color;
25 | border-color: @color;
26 | }
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/resources/lang/id/pagination.php:
--------------------------------------------------------------------------------
1 | '« Sebelumnya',
17 |
18 | 'next' => 'Berikutnya »',
19 |
20 | );
21 |
--------------------------------------------------------------------------------
/app/Cases/Court/CourtForm.php:
--------------------------------------------------------------------------------
1 | 'required',
16 | 'date' => 'required',
17 | ];
18 | }
19 |
20 | /**
21 | * Determine if the user is authorized to make this request.
22 | *
23 | * @return bool
24 | */
25 | public function authorize()
26 | {
27 | return true;
28 | }
29 |
30 | }
31 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/hide-text.less:
--------------------------------------------------------------------------------
1 | // CSS image replacement
2 | //
3 | // Heads up! v3 launched with with only `.hide-text()`, but per our pattern for
4 | // mixins being reused as classes with the same name, this doesn't hold up. As
5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.
6 | //
7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
8 |
9 | // Deprecated as of v3.0.1 (will be removed in v4)
10 | .hide-text() {
11 | font: ~"0/0" a;
12 | color: transparent;
13 | text-shadow: none;
14 | background-color: transparent;
15 | border: 0;
16 | }
17 |
18 | // New mixin to use as of v3.0.1
19 | .text-hide() {
20 | .hide-text();
21 | }
22 |
--------------------------------------------------------------------------------
/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
14 | ./tests/
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Simplified Chinese translation for bootstrap-datepicker
3 | * Yuan Cheung
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['zh-CN'] = {
7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"],
8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"],
9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"],
10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
12 | today: "今日",
13 | format: "yyyy年mm月dd日",
14 | weekStart: 1
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/public/vendor/bootflat/scss/bootflat/_media_list.scss:
--------------------------------------------------------------------------------
1 | // Variables
2 | //------------------------------------------------------
3 | $media-list-font-color-head: $darkgray-dark !default;
4 | $media-list-font-color-body: $mediumgray-dark !default;
5 |
6 |
7 | // Exports
8 | //------------------------------------------------------
9 |
10 | @include exports("media-list") {
11 |
12 | /**
13 | * media list
14 | * --------------------------------------------------
15 | */
16 | .media-list {
17 | color: $media-list-font-color-body;
18 | @at-root .media-heading {
19 | font-size: 14px;
20 | color: $media-list-font-color-head;
21 | }
22 | }
23 |
24 | }
25 |
26 |
27 |
--------------------------------------------------------------------------------
/app/Cases/Evidence/Evidence.php:
--------------------------------------------------------------------------------
1 | belongsTo('App\Cases\Cases', 'case_id');
21 | }
22 |
23 | public function getNameAttribute()
24 | {
25 | return $this->attributes['name'];
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/database/migrations/2014_12_31_104943_create_table_cases_suspects.php:
--------------------------------------------------------------------------------
1 | unsignedInteger('cases_id');
19 | $table->unsignedInteger('suspects_id');
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::drop('cases_suspects');
31 | }
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/database/migrations/2015_02_03_073034_alter_phase_history_start_date_nullable.php:
--------------------------------------------------------------------------------
1 |
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['cy'] = {
7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"],
8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"],
9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"],
10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"],
11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"],
12 | today: "Heddiw"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.he.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Hebrew translation for bootstrap-datepicker
3 | * Sagie Maoz
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['he'] = {
7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"],
8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"],
9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"],
10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"],
11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"],
12 | today: "היום",
13 | rtl: true
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Malay translation for bootstrap-datepicker
3 | * Ateman Faiz
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['ms'] = {
7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"],
8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"],
9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"],
10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"],
12 | today: "Hari Ini"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Simplified Chinese translation for bootstrap-datetimepicker
3 | * Yuan Cheung
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['zh-CN'] = {
7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"],
8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"],
9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"],
10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
12 | today: "今天",
13 | suffix: [],
14 | meridiem: ["上午", "下午"]
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.zh-TW.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Traditional Chinese translation for bootstrap-datetimepicker
3 | * Rung-Sheng Jang
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['zh-TW'] = {
7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"],
8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"],
9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"],
10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
12 | today: "今天",
13 | suffix: [],
14 | meridiem: ["上午", "下午"]
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/mixins/clearfix.less:
--------------------------------------------------------------------------------
1 | // Clearfix
2 | //
3 | // For modern browsers
4 | // 1. The space content is one way to avoid an Opera bug when the
5 | // contenteditable attribute is included anywhere else in the document.
6 | // Otherwise it causes space to appear at the top and bottom of elements
7 | // that are clearfixed.
8 | // 2. The use of `table` rather than `block` is only necessary if using
9 | // `:before` to contain the top-margins of child elements.
10 | //
11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/
12 |
13 | .clearfix() {
14 | &:before,
15 | &:after {
16 | content: " "; // 1
17 | display: table; // 2
18 | }
19 | &:after {
20 | clear: both;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.no.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Norwegian translation for bootstrap-datepicker
3 | **/
4 | ;(function($){
5 | $.fn.datepicker.dates['no'] = {
6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'],
7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'],
8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'],
9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'],
10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'],
11 | today: 'I dag',
12 | clear: 'Nullstill',
13 | weekStart: 1,
14 | format: 'dd.mm.yyyy'
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/breadcrumbs.less:
--------------------------------------------------------------------------------
1 | //
2 | // Breadcrumbs
3 | // --------------------------------------------------
4 |
5 |
6 | .breadcrumb {
7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
8 | margin-bottom: @line-height-computed;
9 | list-style: none;
10 | background-color: @breadcrumb-bg;
11 | border-radius: @border-radius-base;
12 |
13 | > li {
14 | display: inline-block;
15 |
16 | + li:before {
17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
18 | padding: 0 5px;
19 | color: @breadcrumb-color;
20 | }
21 | }
22 |
23 | > .active {
24 | color: @breadcrumb-active-color;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/less/spinning.less:
--------------------------------------------------------------------------------
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 | @-webkit-keyframes fa-spin {
10 | 0% {
11 | -webkit-transform: rotate(0deg);
12 | transform: rotate(0deg);
13 | }
14 | 100% {
15 | -webkit-transform: rotate(359deg);
16 | transform: rotate(359deg);
17 | }
18 | }
19 |
20 | @keyframes fa-spin {
21 | 0% {
22 | -webkit-transform: rotate(0deg);
23 | transform: rotate(0deg);
24 | }
25 | 100% {
26 | -webkit-transform: rotate(359deg);
27 | transform: rotate(359deg);
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/database/migrations/2014_12_16_154446_add_icon_to_sop_phase.php:
--------------------------------------------------------------------------------
1 | string('icon');
18 | });
19 | }
20 |
21 | /**
22 | * Reverse the migrations.
23 | *
24 | * @return void
25 | */
26 | public function down()
27 | {
28 | Schema::table('sop_phase', function($table)
29 | {
30 | $table->dropColumn('icon');
31 | });
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/database/migrations/2015_01_26_062031_add_enum_position_to_posts.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
18 | $table->string('token')->index();
19 | $table->timestamp('created_at');
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::drop('password_resets');
31 | }
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.ca.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Catalan translation for bootstrap-datepicker
3 | * J. Garcia
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['ca'] = {
7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"],
8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"],
9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"],
10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"],
11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"],
12 | today: "Avui"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.el.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Greek translation for bootstrap-datepicker
3 | */
4 | ;(function($){
5 | $.fn.datepicker.dates['el'] = {
6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"],
7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"],
8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"],
9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"],
10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"],
11 | today: "Σήμερα"
12 | };
13 | }(jQuery));
14 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.rs.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Serbian cyrillic translation for bootstrap-datepicker
3 | * Bojan Milosavlević
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['rs'] = {
7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"],
8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"],
9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"],
10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"],
11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"],
12 | today: "Данас"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Thai translation for bootstrap-datepicker
3 | * Suchau Jiraprapot
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['th'] = {
7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"],
8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"],
9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"],
10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"],
11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."],
12 | today: "วันนี้"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.hr.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Croatian localisation
3 | */
4 | ;(function($){
5 | $.fn.datetimepicker.dates['hr'] = {
6 | days: ["Nedjelja", "Ponedjelja", "Utorak", "Srijeda", "Četrtak", "Petak", "Subota", "Nedjelja"],
7 | daysShort: ["Ned", "Pon", "Uto", "Srr", "Čet", "Pet", "Sub", "Ned"],
8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"],
9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"],
10 | monthsShort: ["Sije", "Velj", "Ožu", "Tra", "Svi", "Lip", "Jul", "Kol", "Ruj", "Lis", "Stu", "Pro"],
11 | today: "Danas",
12 | suffix: [],
13 | meridiem: []
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/workbench/eendonesia/moderator/src/views/layouts/default.blade.php:
--------------------------------------------------------------------------------
1 | @extends('dekor::layouts.base')
2 |
3 | @section('body')
4 |
5 |
14 |
15 | @yield('content')
16 | @stop
17 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.bg.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Bulgarian translation for bootstrap-datepicker
3 | * Apostol Apostolov
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['bg'] = {
7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"],
8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"],
9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"],
10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"],
11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"],
12 | today: "днес"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Spanish translation for bootstrap-datepicker
3 | * Bruno Bonamin
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['es'] = {
7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"],
8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"],
9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"],
10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"],
11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"],
12 | today: "Hoy"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Dutch translation for bootstrap-datepicker
3 | * Reinier Goltstein
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['nl'] = {
7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"],
8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"],
9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"],
10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"],
11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"],
12 | today: "Vandaag"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.sl.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Slovene translation for bootstrap-datepicker
3 | * Gregor Rudolf
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['sl'] = {
7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"],
8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"],
9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"],
10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"],
12 | today: "Danes"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/app/Providers/ConfigServiceProvider.php:
--------------------------------------------------------------------------------
1 | 'gapura',
20 | // 'default_guest' => 'frontend.search',
21 | // 'default_auth' => 'frontend.search',
22 | ]);
23 | }
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/less/spinning.less:
--------------------------------------------------------------------------------
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 | @-webkit-keyframes fa-spin {
10 | 0% {
11 | -webkit-transform: rotate(0deg);
12 | transform: rotate(0deg);
13 | }
14 | 100% {
15 | -webkit-transform: rotate(359deg);
16 | transform: rotate(359deg);
17 | }
18 | }
19 |
20 | @keyframes fa-spin {
21 | 0% {
22 | -webkit-transform: rotate(0deg);
23 | transform: rotate(0deg);
24 | }
25 | 100% {
26 | -webkit-transform: rotate(359deg);
27 | transform: rotate(359deg);
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.rs-latin.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Serbian latin translation for bootstrap-datepicker
3 | * Bojan Milosavlević
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['rs-latin'] = {
7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"],
8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"],
9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"],
10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"],
12 | today: "Danas"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ko.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Korean translation for bootstrap-datetimepicker
3 | * Gu Youn
4 | * Baekjoon Choi
5 | */
6 | ;(function($){
7 | $.fn.datetimepicker.dates['ko'] = {
8 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"],
9 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"],
10 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"],
11 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"],
12 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"],
13 | suffix: [],
14 | meridiem: ["오전", "오후"],
15 | today: "오늘",
16 | };
17 | }(jQuery));
18 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap/less/responsive-embed.less:
--------------------------------------------------------------------------------
1 | // Embeds responsive
2 | //
3 | // Credit: Nicolas Gallagher and SUIT CSS.
4 |
5 | .embed-responsive {
6 | position: relative;
7 | display: block;
8 | height: 0;
9 | padding: 0;
10 | overflow: hidden;
11 |
12 | .embed-responsive-item,
13 | iframe,
14 | embed,
15 | object,
16 | video {
17 | position: absolute;
18 | top: 0;
19 | left: 0;
20 | bottom: 0;
21 | height: 100%;
22 | width: 100%;
23 | border: 0;
24 | }
25 |
26 | // Modifier class for 16:9 aspect ratio
27 | &.embed-responsive-16by9 {
28 | padding-bottom: 56.25%;
29 | }
30 |
31 | // Modifier class for 4:3 aspect ratio
32 | &.embed-responsive-4by3 {
33 | padding-bottom: 75%;
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/less/spinning.less:
--------------------------------------------------------------------------------
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 | @-webkit-keyframes fa-spin {
10 | 0% {
11 | -webkit-transform: rotate(0deg);
12 | transform: rotate(0deg);
13 | }
14 | 100% {
15 | -webkit-transform: rotate(359deg);
16 | transform: rotate(359deg);
17 | }
18 | }
19 |
20 | @keyframes fa-spin {
21 | 0% {
22 | -webkit-transform: rotate(0deg);
23 | transform: rotate(0deg);
24 | }
25 | 100% {
26 | -webkit-transform: rotate(359deg);
27 | transform: rotate(359deg);
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/scss/_spinning.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 | @-webkit-keyframes fa-spin {
10 | 0% {
11 | -webkit-transform: rotate(0deg);
12 | transform: rotate(0deg);
13 | }
14 | 100% {
15 | -webkit-transform: rotate(359deg);
16 | transform: rotate(359deg);
17 | }
18 | }
19 |
20 | @keyframes fa-spin {
21 | 0% {
22 | -webkit-transform: rotate(0deg);
23 | transform: rotate(0deg);
24 | }
25 | 100% {
26 | -webkit-transform: rotate(359deg);
27 | transform: rotate(359deg);
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Norwegian (bokmål) translation for bootstrap-datepicker
3 | * Fredrik Sundmyhr
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['nb'] = {
7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"],
8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"],
9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"],
10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"],
12 | today: "I Dag"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.sq.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Albanian translation for bootstrap-datepicker
3 | * Tomor Pupovci
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['sq'] = {
7 | days: ["E Diel", "E Hënë", "E martē", "E mërkurë", "E Enjte", "E Premte", "E Shtunë", "E Diel"],
8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu", "Die"],
9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht", "Di"],
10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"],
11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"],
12 | today: "Sot"
13 | };
14 | }(jQuery));
15 |
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.ua.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Ukrainian translation for bootstrap-datepicker
3 | * Igor Polynets
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['ua'] = {
7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятница", "Субота", "Неділя"],
8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"],
9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"],
10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"],
11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"],
12 | today: "Сьогодні",
13 | weekStart: 1
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/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.woff?v=@{fa-version}') format('woff'),
9 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
10 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12 | font-weight: normal;
13 | font-style: normal;
14 | }
15 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/scss/_spinning.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 | @-webkit-keyframes fa-spin {
10 | 0% {
11 | -webkit-transform: rotate(0deg);
12 | transform: rotate(0deg);
13 | }
14 | 100% {
15 | -webkit-transform: rotate(359deg);
16 | transform: rotate(359deg);
17 | }
18 | }
19 |
20 | @keyframes fa-spin {
21 | 0% {
22 | -webkit-transform: rotate(0deg);
23 | transform: rotate(0deg);
24 | }
25 | 100% {
26 | -webkit-transform: rotate(359deg);
27 | transform: rotate(359deg);
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/app/Providers/BusServiceProvider.php:
--------------------------------------------------------------------------------
1 | mapUsing(function($command)
17 | {
18 | return Dispatcher::simpleMapping(
19 | $command, 'App\Commands', 'App\Handlers\Commands'
20 | );
21 | });
22 | }
23 |
24 | /**
25 | * Register any application services.
26 | *
27 | * @return void
28 | */
29 | public function register()
30 | {
31 | //
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/database/migrations/2015_02_10_142849_add_number_to_cases_checklist.php:
--------------------------------------------------------------------------------
1 | string('number')->nullable()->after('date');
18 | });
19 | }
20 |
21 | /**
22 | * Reverse the migrations.
23 | *
24 | * @return void
25 | */
26 | public function down()
27 | {
28 | Schema::table('cases_checklist', function(Blueprint $table)
29 | {
30 | $table->dropColumn('number');
31 | });
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Bahasa translation for bootstrap-datepicker
3 | * Azwar Akbar
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['id'] = {
7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"],
8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mgu"],
9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"],
10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"],
12 | today: "Hari Ini",
13 | clear: "Kosongkan"
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.id.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Bahasa translation for bootstrap-datetimepicker
3 | * Azwar Akbar
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['id'] = {
7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"],
8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mgu"],
9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"],
10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"],
12 | suffix: [],
13 | meridiem: []
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.kk.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Kazakh translation for bootstrap-datepicker
3 | * Yerzhan Tolekov
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['kk'] = {
7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі", "Жексенбі"],
8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен", "Жек"],
9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн", "Жк"],
10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"],
11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мамыр", "Мау", "Шлд", "Тмз", "Қыр", "Қзн", "Қар", "Жел"],
12 | today: "Бүгін",
13 | weekStart: 1
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Turkish translation for bootstrap-datepicker
3 | * Serkan Algur
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['tr'] = {
7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar"],
8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts", "Pz"],
9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct", "Pz"],
10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"],
11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"],
12 | today: "Bugün",
13 | format: "dd.mm.yyyy"
14 | };
15 | }(jQuery));
16 |
17 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/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.woff?v=#{$fa-version}') format('woff'),
9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12 | font-weight: normal;
13 | font-style: normal;
14 | }
15 |
--------------------------------------------------------------------------------
/resources/views/backend/templates/index.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.admin.admin')
2 |
3 | @section('content-admin')
4 |
5 |
Template Surat
6 |
7 |
8 |
9 | @foreach($templates as $template)
10 |
11 | {{ $template->case }}
12 | {{ $template->short_title }} {{ $template->title }}
13 |
14 | Edit
15 |
16 |
17 | @endforeach
18 |
19 |
20 |
21 | @stop
22 |
--------------------------------------------------------------------------------
/resources/views/frontend/postByCaseType.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.full.full')
2 |
3 | @section('breadcrumb')
4 | {{ array_get($types, Input::get('type', 201), 'Cari Kasus') }}
5 | @stop
6 |
7 | @section('content')
8 |
9 |
10 |
11 | @include('frontend.tab', ['active' => $post->id])
12 |
13 |
14 |
{{$post->title}}
15 | {{$post->content}}
16 |
17 |
18 |
19 |
20 |
21 |
22 | @stop
23 |
24 | @section('script-end')
25 | @parent
26 |
31 | @stop
32 |
--------------------------------------------------------------------------------
/database/migrations/2014_12_02_073229_create_acl_permissions_table.php:
--------------------------------------------------------------------------------
1 | integer('group_id', false);
18 | $table->integer('resource_id', false);
19 |
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::drop('acl_permissions');
31 | }
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/database/migrations/2015_01_21_162824_add_category_to_case.php:
--------------------------------------------------------------------------------
1 | enum('category', ['tpul', 'oharda', 'kamtibum'])->nullable()->after('type_id');
18 | });
19 | }
20 |
21 | /**
22 | * Reverse the migrations.
23 | *
24 | * @return void
25 | */
26 | public function down()
27 | {
28 | Schema::table('cases', function(Blueprint $table)
29 | {
30 | $table->dropColumn('category');
31 | });
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Danish translation for bootstrap-datepicker
3 | * Christian Pedersen
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['da'] = {
7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"],
8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"],
9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"],
10 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"],
12 | today: "I Dag",
13 | clear: "Nulstil"
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Brazilian translation for bootstrap-datepicker
3 | * Cauan Cabral
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['pt-BR'] = {
7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"],
8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"],
9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"],
10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"],
11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"],
12 | today: "Hoje",
13 | clear: "Limpar"
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ua.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Ukrainian translation for bootstrap-datepicker
3 | * Igor Polynets
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['ua'] = {
7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четверг", "П'ятниця", "Субота", "Неділя"],
8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"],
9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"],
10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"],
11 | monthsShort: ["Січ", "Лют", "Бер", "Квт", "Трв", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Грд"],
12 | today: "Сьогодні",
13 | weekStart: 1
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/select2/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name" : "Select2",
3 | "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.",
4 | "homepage": "http://ivaynberg.github.io/select2",
5 | "author": "Igor Vaynberg",
6 | "repository": {"type": "git", "url": "git://github.com/ivaynberg/select2.git"},
7 | "main": "select2.js",
8 | "version": "3.5.2",
9 | "jspm": {
10 | "main": "select2",
11 | "files": ["select2.js", "select2.png", "select2.css", "select2-spinner.gif"],
12 | "shim": {
13 | "select2": {
14 | "imports": ["jquery", "./select2.css!"],
15 | "exports": "$"
16 | }
17 | },
18 | "buildConfig": { "uglify": true }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/public/vendor/select2/select2_locale_zh-CN.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Select2 Chinese translation
3 | */
4 | (function ($) {
5 | "use strict";
6 | $.fn.select2.locales['zh-CN'] = {
7 | formatNoMatches: function () { return "没有找到匹配项"; },
8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "请再输入" + n + "个字符";},
9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "请删掉" + n + "个字符";},
10 | formatSelectionTooBig: function (limit) { return "你只能选择最多" + limit + "项"; },
11 | formatLoadMore: function (pageNumber) { return "加载结果中…"; },
12 | formatSearching: function () { return "搜索中…"; }
13 | };
14 |
15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['zh-CN']);
16 | })(jQuery);
17 |
--------------------------------------------------------------------------------
/database/migrations/2014_12_02_073214_create_acl_users_groups_table.php:
--------------------------------------------------------------------------------
1 | integer('user_id', false);
18 | $table->integer('group_id', false);
19 |
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::drop('acl_users_groups');
31 | }
32 |
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/database/migrations/2015_01_21_172332_add_nomor_penahanan_to_suspect.php:
--------------------------------------------------------------------------------
1 | string('nomor_penahanan')->nullable()->after('tgl_penahanan');
18 | });
19 | }
20 |
21 | /**
22 | * Reverse the migrations.
23 | *
24 | * @return void
25 | */
26 | public function down()
27 | {
28 | Schema::table('suspects', function(Blueprint $table)
29 | {
30 | $table->dropColumn('nomor_penahanan');
31 | });
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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.woff?v=@{fa-version}') format('woff'),
9 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
10 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12 | font-weight: normal;
13 | font-style: normal;
14 | }
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Russian translation for bootstrap-datepicker
3 | * Victor Taranenko
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['ru'] = {
7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", "Воскресенье"],
8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Вск"],
9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Вс"],
10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"],
11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"],
12 | today: "Сегодня",
13 | weekStart: 1
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/select2/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name":
3 | "ivaynberg/select2",
4 | "description": "Select2 is a jQuery based replacement for select boxes.",
5 | "version": "3.5.2",
6 | "type": "component",
7 | "homepage": "http://ivaynberg.github.io/select2/",
8 | "license": "Apache-2.0",
9 | "require": {
10 | "robloach/component-installer": "*",
11 | "components/jquery": ">=1.7.1"
12 | },
13 | "extra": {
14 | "component": {
15 | "scripts": [
16 | "select2.js"
17 | ],
18 | "files": [
19 | "select2.js",
20 | "select2_locale_*.js",
21 | "select2.css",
22 | "select2-bootstrap.css",
23 | "select2-spinner.gif",
24 | "select2.png",
25 | "select2x2.png"
26 | ]
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/resources/views/frontend/statistic/tab.blade.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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.woff?v=@{fa-version}') format('woff'),
9 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
10 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12 | font-weight: normal;
13 | font-style: normal;
14 | }
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Czech translation for bootstrap-datepicker
3 | * Matěj Koubík
4 | * Fixes by Michal Remiš
5 | */
6 | ;(function($){
7 | $.fn.datepicker.dates['cs'] = {
8 | days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota", "Neděle"],
9 | daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob", "Ned"],
10 | daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So", "Ne"],
11 | months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"],
12 | monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"],
13 | today: "Dnes"
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Icelandic translation for bootstrap-datepicker
3 | * Hinrik Örn Sigurðsson
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['is'] = {
7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur", "Sunnudagur"],
8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau", "Sun"],
9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La", "Su"],
10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"],
12 | today: "Í Dag"
13 | };
14 | }(jQuery));
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.he.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Hebrew translation for bootstrap-datetimepicker
3 | * Sagie Maoz
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['he'] = {
7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"],
8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"],
9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"],
10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"],
11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"],
12 | today: "היום",
13 | suffix: [],
14 | meridiem: [],
15 | rtl: true
16 | };
17 | }(jQuery));
18 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ms.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Malay translation for bootstrap-datetimepicker
3 | * Ateman Faiz
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['ms'] = {
7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"],
8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"],
9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"],
10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"],
12 | today: "Hari Ini",
13 | suffix: [],
14 | meridiem: []
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/resources/lang/id/flash/case.php:
--------------------------------------------------------------------------------
1 | 'Register perkara berhasil',
6 | 'updated' => 'Data perkara berhasil diperbarui',
7 | 'deleted' => 'Perkara telah dihapus',
8 | 'edit_not_allowed' => 'Anda tidak diijinkan untuk mengedit data kasus ini',
9 | 'skip' => 'Perkara dilanjutkan ke tahap berikutnya',
10 |
11 | 'checklist' => [
12 | 'checked' => 'Checklist berhasil disimpan',
13 | 'unchecked' => 'Checklist dibatalkan',
14 | ],
15 |
16 | 'officer' => [
17 | 'added' => 'Jaksa anggota berhasil ditambahkan',
18 | 'removed' => 'Jaksa anggota telah dihapus',
19 | ],
20 |
21 | 'activity' => [
22 | 'created' => 'Catatan berhasil ditambahkan'
23 | ]
24 | );
25 |
--------------------------------------------------------------------------------
/database/migrations/2015_01_21_105807_add_penyidik_type_to_cases.php:
--------------------------------------------------------------------------------
1 | enum('penyidik_type', ['external', 'internal'])->default('external')->after('penyidik_id');
18 | });
19 | }
20 |
21 | /**
22 | * Reverse the migrations.
23 | *
24 | * @return void
25 | */
26 | public function down()
27 | {
28 | Schema::table('cases', function(Blueprint $table)
29 | {
30 | $table->dropColumn('penyidik_type');
31 | });
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/public/packages/eendonesia/dekor/font-awesome/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.woff?v=#{$fa-version}') format('woff'),
9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12 | font-weight: normal;
13 | font-style: normal;
14 | }
15 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.sk.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Slovak translation for bootstrap-datepicker
3 | * Marek Lichtner
4 | * Fixes by Michal Remiš
5 | */
6 | ;(function($){
7 | $.fn.datepicker.dates["sk"] = {
8 | days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota", "Nedeľa"],
9 | daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob", "Ned"],
10 | daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pia", "So", "Ne"],
11 | months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"],
12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"],
13 | today: "Dnes"
14 | };
15 | }(jQuery));
16 |
--------------------------------------------------------------------------------
/public/vendor/font-awesome/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 |
--------------------------------------------------------------------------------
/public/vendor/select2/select2_locale_zh-TW.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Select2 Traditional Chinese translation
3 | */
4 | (function ($) {
5 | "use strict";
6 | $.fn.select2.locales['zh-TW'] = {
7 | formatNoMatches: function () { return "沒有找到相符的項目"; },
8 | formatInputTooShort: function (input, min) { var n = min - input.length; return "請再輸入" + n + "個字元";},
9 | formatInputTooLong: function (input, max) { var n = input.length - max; return "請刪掉" + n + "個字元";},
10 | formatSelectionTooBig: function (limit) { return "你只能選擇最多" + limit + "項"; },
11 | formatLoadMore: function (pageNumber) { return "載入中…"; },
12 | formatSearching: function () { return "搜尋中…"; }
13 | };
14 |
15 | $.extend($.fn.select2.defaults, $.fn.select2.locales['zh-TW']);
16 | })(jQuery);
17 |
--------------------------------------------------------------------------------
/workbench/eendonesia/dekor/public/font-awesome/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.woff?v=#{$fa-version}') format('woff'),
9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12 | font-weight: normal;
13 | font-style: normal;
14 | }
15 |
--------------------------------------------------------------------------------
/database/migrations/2014_12_17_103104_create_table_settings.php:
--------------------------------------------------------------------------------
1 | string('key');
17 | $table->text('value');
18 |
19 | $table->index('key');
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::table('settings', function(Blueprint $table) {
31 | $table->drop();
32 | });
33 | }
34 |
35 | }
36 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Swedish translation for bootstrap-datepicker
3 | * Patrik Ragnarsson
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['sv'] = {
7 | days: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag", "Söndag"],
8 | daysShort: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör", "Sön"],
9 | daysMin: ["Sö", "Må", "Ti", "On", "To", "Fr", "Lö", "Sö"],
10 | months: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"],
12 | today: "Idag",
13 | format: "yyyy-mm-dd",
14 | weekStart: 1
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.no.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Norwegian translation for bootstrap-datetimepicker
3 | * Rune Warhuus
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['no'] = {
7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"],
8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"],
9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"],
10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"],
12 | today: "I Dag",
13 | suffix: [],
14 | meridiem: []
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/public/vendor/select2/select2_locale_ja.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Select2 Japanese translation.
3 | */
4 | (function ($) {
5 | "use strict";
6 |
7 | $.fn.select2.locales['ja'] = {
8 | formatNoMatches: function () { return "該当なし"; },
9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "後" + n + "文字入れてください"; },
10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "検索文字列が" + n + "文字長すぎます"; },
11 | formatSelectionTooBig: function (limit) { return "最多で" + limit + "項目までしか選択できません"; },
12 | formatLoadMore: function (pageNumber) { return "読込中・・・"; },
13 | formatSearching: function () { return "検索中・・・"; }
14 | };
15 |
16 | $.extend($.fn.select2.defaults, $.fn.select2.locales['ja']);
17 | })(jQuery);
18 |
--------------------------------------------------------------------------------
/workbench/eendonesia/gapura/src/views/login.blade.php:
--------------------------------------------------------------------------------
1 | @extends('dekor::layouts.full')
2 |
3 | @section('content')
4 |
5 |
6 |
Login
7 | {{ BootForm::open(['action' => route('gapura.login')]) }}
8 |
9 | {{ BootForm::text('Email', 'email') }}
10 | {{ BootForm::text('Password', 'password') }}
11 |
12 |
13 | {{ BootForm::submit('Submit', 'btn-primary') }}
14 |
15 |
18 |
19 | {{ BootForm::close() }}
20 |
21 |
22 | @stop
23 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datepicker/js/locales/bootstrap-datepicker.fa.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Persian translation for bootstrap-datepicker
3 | * Mostafa Rokooie
4 | */
5 | ;(function($){
6 | $.fn.datepicker.dates['fa'] = {
7 | days: ["یکشنبه", "دوشنبه", "سهشنبه", "چهارشنبه", "پنجشنبه", "جمعه", "شنبه", "یکشنبه"],
8 | daysShort: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه", "یک"],
9 | daysMin: ["ی", "د", "س", "چ", "پ", "ج", "ش", "ی"],
10 | months: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"],
11 | monthsShort: ["ژان", "فور", "مار", "آور", "مه", "ژون", "ژوی", "اوت", "سپت", "اکت", "نوا", "دسا"],
12 | today: "امروز",
13 | clear: "پاک کن",
14 | weekStart: 1,
15 | format: "yyyy/mm/dd"
16 | };
17 | }(jQuery));
18 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.ca.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Catalan translation for bootstrap-datetimepicker
3 | * J. Garcia
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['ca'] = {
7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"],
8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"],
9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"],
10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"],
11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"],
12 | today: "Avui",
13 | suffix: [],
14 | meridiem: []
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.da.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Danish translation for bootstrap-datetimepicker
3 | * Christian Pedersen
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['da'] = {
7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"],
8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"],
9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"],
10 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"],
11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"],
12 | today: "I Dag",
13 | suffix: [],
14 | meridiem: []
15 | };
16 | }(jQuery));
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.el.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Greek translation for bootstrap-datetimepicker
3 | */
4 | ;(function($){
5 | $.fn.datetimepicker.dates['el'] = {
6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"],
7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"],
8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"],
9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"],
10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"],
11 | today: "Σήμερα",
12 | suffix: [],
13 | meridiem: []
14 | };
15 | }(jQuery));
--------------------------------------------------------------------------------
/public/vendor/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.rs.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Serbian cyrillic translation for bootstrap-datetimepicker
3 | * Bojan Milosavlević
4 | */
5 | ;(function($){
6 | $.fn.datetimepicker.dates['rs'] = {
7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"],
8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"],
9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"],
10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"],
11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"],
12 | today: "Данас",
13 | suffix: [],
14 | meridiem: []
15 | };
16 | }(jQuery));
17 |
--------------------------------------------------------------------------------