├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── LICENSE ├── README.md ├── app ├── Console │ ├── Commands │ │ ├── CheckForBirthday.php │ │ ├── CreateAbsentCodeCommand.php │ │ ├── DeleteUnapprovedData.php │ │ ├── GenerateAttendeCommand.php │ │ ├── GenerateHolidays.php │ │ ├── NotifyExpiredOutstation.php │ │ ├── NotifyExpiredPaidLeave.php │ │ └── NotifyExpiredPermission.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Exports │ ├── AttendeAnnualExport.php │ ├── AttendeDailyExport.php │ ├── AttendeMonthlyExport.php │ └── Sheets │ │ ├── Annual │ │ ├── HonorerAttendeSheet.php │ │ └── PnsAttendeSheet.php │ │ ├── Daily │ │ ├── HonorerAttendeSheet.php │ │ └── PnsAttendeSheet.php │ │ └── Monthly │ │ ├── HonorerAttendeSheet.php │ │ └── PnsAttendeSheet.php ├── Helpers │ ├── ApiHelpers.php │ └── SubdirectoryAssetHelper.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── AbsentPermissionController.php │ │ │ ├── AttendeController.php │ │ │ ├── OutstationController.php │ │ │ ├── PaidLeaveController.php │ │ │ └── UserController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ └── MainController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── HandleInertiaRequests.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── AbsentPermission.php │ ├── ApprovalStatus.php │ ├── Attende.php │ ├── AttendeCode.php │ ├── AttendeStatus.php │ ├── AttendeType.php │ ├── Department.php │ ├── Gender.php │ ├── GovernmentEmployeeGroup.php │ ├── Holiday.php │ ├── LeaveCategory.php │ ├── Outstation.php │ ├── PaidLeave.php │ └── User.php ├── Notifications │ ├── AbsentPermissionApprovedNotification.php │ ├── AbsentPermissionCreatedNotification.php │ ├── AbsentPermissionExpiredNotification.php │ ├── AbsentPermissionRejectedNotification.php │ ├── AttendanceCanceledNotification.php │ ├── AttendeStatusUpdatedNotification.php │ ├── BirthdayNotification.php │ ├── Channels │ │ └── OneSignalChannel.php │ ├── OutstationApprovedNotification.php │ ├── OutstationCreatedNotification.php │ ├── OutstationExpiredNotification.php │ ├── OutstationRejectedNotification.php │ ├── PaidLeaveApprovedNotification.php │ ├── PaidLeaveCreatedNotification.php │ ├── PaidLeaveExpiredNotification.php │ └── PaidLeaveRejectedNotification.php ├── Observers │ ├── AbsentPermissionObserver.php │ ├── OutstationObserver.php │ └── PaidLeaveObserver.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── HelperServiceProvider.php │ ├── ModelEventServiceProvider.php │ ├── RepositoryServiceProvider.php │ └── RouteServiceProvider.php ├── Repositories │ ├── AbsentPermissionRepository.php │ ├── AttendeCodeRepository.php │ ├── AttendeRepository.php │ ├── HolidayRepository.php │ ├── Interfaces │ │ ├── AbsentPermissionRepositoryInterface.php │ │ ├── AttendeCodeRepositoryInterface.php │ │ ├── AttendeRepositoryInterface.php │ │ ├── HolidayRepositoryInterface.php │ │ ├── OutstationRepositoryInterface.php │ │ ├── PaidLeaveRepositoryInterface.php │ │ └── UserRepositoryInterface.php │ ├── OutstationRepository.php │ ├── PaidLeaveRepository.php │ └── UserRepository.php ├── Transformers │ ├── AbsentPermissionTransformer.php │ ├── AllUserTransformers.php │ ├── AttendeTransformers.php │ ├── EmployeeOutstationTransformer.php │ ├── EmployeePaidLeaveTransformer.php │ ├── EmployeePermissionTransformer.php │ ├── OutstationTransformer.php │ ├── PaidLeaveTransformer.php │ ├── Serializers │ │ └── CustomSerializer.php │ ├── UserTransformer.php │ └── Web │ │ ├── AllAttendeTransformer.php │ │ ├── AttendeCodeTransformer.php │ │ └── AttendeUserTransformer.php └── Widgets │ ├── DepartmentWidget.php │ └── UserWidget.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── fractal.php ├── hashing.php ├── hooks.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── view.php ├── voyager-hooks.php └── voyager.php ├── database ├── .gitignore ├── csv │ ├── departments.csv │ └── users.csv ├── factories │ ├── AbsentPermissionFactory.php │ ├── AttendeCodeFactory.php │ ├── AttendeFactory.php │ ├── AttendeStatusFactory.php │ ├── AttendeTypeFactory.php │ ├── DepartmentFactory.php │ ├── HolidayFactory.php │ ├── OutstationFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_11_06_131203_create_genders_table.php │ ├── 2014_11_06_131606_create_departments_table.php │ ├── 2014_11_06_131700_create_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2020_11_06_132251_create_attende_types_table.php │ ├── 2020_11_06_132319_create_attende_statuses_table.php │ ├── 2020_11_06_132431_create_attende_codes_table.php │ ├── 2020_11_06_132453_create_attendes_table.php │ ├── 2020_11_06_135612_create_absent_permissions_table.php │ ├── 2020_11_18_033614_create_holidays_table.php │ ├── 2020_12_08_191855_create_outstations_table.php │ ├── 2020_12_08_204630_create_notifications_table.php │ ├── 2021_01_07_224603_create_leave_categories_table.php │ ├── 2021_01_07_224658_create_paid_leaves_table.php │ ├── 2021_01_08_100545_create_government_employee_groups_table.php │ ├── 2021_01_08_100920_add_government_employee_group_id_to_users_table.php │ ├── 2021_01_25_133347_create_approval_statuses_table.php │ ├── 2021_01_25_133709_add_approval_status_id_column_to_absent_permissions_table.php │ ├── 2021_01_25_133736_add_approval_status_id_column_to_outstations_table.php │ ├── 2021_01_25_133810_add_approval_status_id_column_to_paid_leaves_table.php │ ├── 2021_02_01_165053_add_date_of_birth_column_to_users_table.php │ └── 2022_03_31_104359_add_is_active_to_users_table.php ├── seeders │ ├── AbsentPermissionSeeder.php │ ├── ApprovalStatusSeeder.php │ ├── AttendeCodeSeeder.php │ ├── AttendeSeeder.php │ ├── AttendeStatusSeeder.php │ ├── AttendeTypeSeeder.php │ ├── DatabaseSeeder.php │ ├── DepartmentSeeder.php │ ├── GenderSeeder.php │ ├── GovernmentEmployeeGroupSeeder.php │ ├── HolidaySeeder.php │ ├── LeaveCategorySeeder.php │ ├── OutstationSeeder.php │ └── UserSeeder.php └── seeds │ ├── DataRowsTableSeeder.php │ ├── DataTypesTableSeeder.php │ ├── MenuItemsTableSeeder.php │ ├── MenusTableSeeder.php │ ├── PermissionRoleTableSeeder.php │ ├── PermissionsTableSeeder.php │ ├── RolesTableSeeder.php │ ├── SettingsTableSeeder.php │ ├── TranslationsTableSeeder.php │ ├── VoyagerDatabaseSeeder.php │ └── VoyagerDummyDatabaseSeeder.php ├── hooks └── hooks.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── buttons.html5.js │ ├── images │ │ ├── logo.png │ │ ├── not_found_placeholder.png │ │ └── weekend_placeholder.png │ └── logo.png ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ ├── app.js │ └── app.js.LICENSE.txt ├── mix-manifest.json ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── Pages │ │ ├── Home │ │ │ └── Index.vue │ │ ├── Statistic │ │ │ └── Index.vue │ │ └── Table │ │ │ └── Index.vue │ ├── app.js │ ├── bootstrap.js │ └── components │ │ ├── ExampleComponent.vue │ │ ├── Line.vue │ │ └── Pie.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── app.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── vendor │ └── voyager │ │ └── users │ │ └── edit-add.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.config.js └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/CheckForBirthday.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Commands/CheckForBirthday.php -------------------------------------------------------------------------------- /app/Console/Commands/CreateAbsentCodeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Commands/CreateAbsentCodeCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/DeleteUnapprovedData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Commands/DeleteUnapprovedData.php -------------------------------------------------------------------------------- /app/Console/Commands/GenerateAttendeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Commands/GenerateAttendeCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/GenerateHolidays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Commands/GenerateHolidays.php -------------------------------------------------------------------------------- /app/Console/Commands/NotifyExpiredOutstation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Commands/NotifyExpiredOutstation.php -------------------------------------------------------------------------------- /app/Console/Commands/NotifyExpiredPaidLeave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Commands/NotifyExpiredPaidLeave.php -------------------------------------------------------------------------------- /app/Console/Commands/NotifyExpiredPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Commands/NotifyExpiredPermission.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exports/AttendeAnnualExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/AttendeAnnualExport.php -------------------------------------------------------------------------------- /app/Exports/AttendeDailyExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/AttendeDailyExport.php -------------------------------------------------------------------------------- /app/Exports/AttendeMonthlyExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/AttendeMonthlyExport.php -------------------------------------------------------------------------------- /app/Exports/Sheets/Annual/HonorerAttendeSheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/Sheets/Annual/HonorerAttendeSheet.php -------------------------------------------------------------------------------- /app/Exports/Sheets/Annual/PnsAttendeSheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/Sheets/Annual/PnsAttendeSheet.php -------------------------------------------------------------------------------- /app/Exports/Sheets/Daily/HonorerAttendeSheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/Sheets/Daily/HonorerAttendeSheet.php -------------------------------------------------------------------------------- /app/Exports/Sheets/Daily/PnsAttendeSheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/Sheets/Daily/PnsAttendeSheet.php -------------------------------------------------------------------------------- /app/Exports/Sheets/Monthly/HonorerAttendeSheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/Sheets/Monthly/HonorerAttendeSheet.php -------------------------------------------------------------------------------- /app/Exports/Sheets/Monthly/PnsAttendeSheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Exports/Sheets/Monthly/PnsAttendeSheet.php -------------------------------------------------------------------------------- /app/Helpers/ApiHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Helpers/ApiHelpers.php -------------------------------------------------------------------------------- /app/Helpers/SubdirectoryAssetHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Helpers/SubdirectoryAssetHelper.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/AbsentPermissionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Api/AbsentPermissionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/AttendeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Api/AttendeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/OutstationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Api/OutstationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/PaidLeaveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Api/PaidLeaveController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Api/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MainController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Controllers/MainController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/AbsentPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/AbsentPermission.php -------------------------------------------------------------------------------- /app/Models/ApprovalStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/ApprovalStatus.php -------------------------------------------------------------------------------- /app/Models/Attende.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/Attende.php -------------------------------------------------------------------------------- /app/Models/AttendeCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/AttendeCode.php -------------------------------------------------------------------------------- /app/Models/AttendeStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/AttendeStatus.php -------------------------------------------------------------------------------- /app/Models/AttendeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/AttendeType.php -------------------------------------------------------------------------------- /app/Models/Department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/Department.php -------------------------------------------------------------------------------- /app/Models/Gender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/Gender.php -------------------------------------------------------------------------------- /app/Models/GovernmentEmployeeGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/GovernmentEmployeeGroup.php -------------------------------------------------------------------------------- /app/Models/Holiday.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/Holiday.php -------------------------------------------------------------------------------- /app/Models/LeaveCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/LeaveCategory.php -------------------------------------------------------------------------------- /app/Models/Outstation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/Outstation.php -------------------------------------------------------------------------------- /app/Models/PaidLeave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/PaidLeave.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/AbsentPermissionApprovedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/AbsentPermissionApprovedNotification.php -------------------------------------------------------------------------------- /app/Notifications/AbsentPermissionCreatedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/AbsentPermissionCreatedNotification.php -------------------------------------------------------------------------------- /app/Notifications/AbsentPermissionExpiredNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/AbsentPermissionExpiredNotification.php -------------------------------------------------------------------------------- /app/Notifications/AbsentPermissionRejectedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/AbsentPermissionRejectedNotification.php -------------------------------------------------------------------------------- /app/Notifications/AttendanceCanceledNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/AttendanceCanceledNotification.php -------------------------------------------------------------------------------- /app/Notifications/AttendeStatusUpdatedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/AttendeStatusUpdatedNotification.php -------------------------------------------------------------------------------- /app/Notifications/BirthdayNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/BirthdayNotification.php -------------------------------------------------------------------------------- /app/Notifications/Channels/OneSignalChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/Channels/OneSignalChannel.php -------------------------------------------------------------------------------- /app/Notifications/OutstationApprovedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/OutstationApprovedNotification.php -------------------------------------------------------------------------------- /app/Notifications/OutstationCreatedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/OutstationCreatedNotification.php -------------------------------------------------------------------------------- /app/Notifications/OutstationExpiredNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/OutstationExpiredNotification.php -------------------------------------------------------------------------------- /app/Notifications/OutstationRejectedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/OutstationRejectedNotification.php -------------------------------------------------------------------------------- /app/Notifications/PaidLeaveApprovedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/PaidLeaveApprovedNotification.php -------------------------------------------------------------------------------- /app/Notifications/PaidLeaveCreatedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/PaidLeaveCreatedNotification.php -------------------------------------------------------------------------------- /app/Notifications/PaidLeaveExpiredNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/PaidLeaveExpiredNotification.php -------------------------------------------------------------------------------- /app/Notifications/PaidLeaveRejectedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Notifications/PaidLeaveRejectedNotification.php -------------------------------------------------------------------------------- /app/Observers/AbsentPermissionObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Observers/AbsentPermissionObserver.php -------------------------------------------------------------------------------- /app/Observers/OutstationObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Observers/OutstationObserver.php -------------------------------------------------------------------------------- /app/Observers/PaidLeaveObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Observers/PaidLeaveObserver.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/HelperServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Providers/HelperServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ModelEventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Providers/ModelEventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Providers/RepositoryServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/AbsentPermissionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/AbsentPermissionRepository.php -------------------------------------------------------------------------------- /app/Repositories/AttendeCodeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/AttendeCodeRepository.php -------------------------------------------------------------------------------- /app/Repositories/AttendeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/AttendeRepository.php -------------------------------------------------------------------------------- /app/Repositories/HolidayRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/HolidayRepository.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/AbsentPermissionRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/Interfaces/AbsentPermissionRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/AttendeCodeRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/Interfaces/AttendeCodeRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/AttendeRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/Interfaces/AttendeRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/HolidayRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/Interfaces/HolidayRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/OutstationRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/Interfaces/OutstationRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/PaidLeaveRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/Interfaces/PaidLeaveRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/UserRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/Interfaces/UserRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/OutstationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/OutstationRepository.php -------------------------------------------------------------------------------- /app/Repositories/PaidLeaveRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/PaidLeaveRepository.php -------------------------------------------------------------------------------- /app/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Repositories/UserRepository.php -------------------------------------------------------------------------------- /app/Transformers/AbsentPermissionTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/AbsentPermissionTransformer.php -------------------------------------------------------------------------------- /app/Transformers/AllUserTransformers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/AllUserTransformers.php -------------------------------------------------------------------------------- /app/Transformers/AttendeTransformers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/AttendeTransformers.php -------------------------------------------------------------------------------- /app/Transformers/EmployeeOutstationTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/EmployeeOutstationTransformer.php -------------------------------------------------------------------------------- /app/Transformers/EmployeePaidLeaveTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/EmployeePaidLeaveTransformer.php -------------------------------------------------------------------------------- /app/Transformers/EmployeePermissionTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/EmployeePermissionTransformer.php -------------------------------------------------------------------------------- /app/Transformers/OutstationTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/OutstationTransformer.php -------------------------------------------------------------------------------- /app/Transformers/PaidLeaveTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/PaidLeaveTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Serializers/CustomSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/Serializers/CustomSerializer.php -------------------------------------------------------------------------------- /app/Transformers/UserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/UserTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Web/AllAttendeTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/Web/AllAttendeTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Web/AttendeCodeTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/Web/AttendeCodeTransformer.php -------------------------------------------------------------------------------- /app/Transformers/Web/AttendeUserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Transformers/Web/AttendeUserTransformer.php -------------------------------------------------------------------------------- /app/Widgets/DepartmentWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Widgets/DepartmentWidget.php -------------------------------------------------------------------------------- /app/Widgets/UserWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/app/Widgets/UserWidget.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fractal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/fractal.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/hooks.php: -------------------------------------------------------------------------------- 1 | env('HOOKS_ENABLED', true), 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/view.php -------------------------------------------------------------------------------- /config/voyager-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/voyager-hooks.php -------------------------------------------------------------------------------- /config/voyager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/config/voyager.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/csv/departments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/csv/departments.csv -------------------------------------------------------------------------------- /database/csv/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/csv/users.csv -------------------------------------------------------------------------------- /database/factories/AbsentPermissionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/AbsentPermissionFactory.php -------------------------------------------------------------------------------- /database/factories/AttendeCodeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/AttendeCodeFactory.php -------------------------------------------------------------------------------- /database/factories/AttendeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/AttendeFactory.php -------------------------------------------------------------------------------- /database/factories/AttendeStatusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/AttendeStatusFactory.php -------------------------------------------------------------------------------- /database/factories/AttendeTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/AttendeTypeFactory.php -------------------------------------------------------------------------------- /database/factories/DepartmentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/DepartmentFactory.php -------------------------------------------------------------------------------- /database/factories/HolidayFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/HolidayFactory.php -------------------------------------------------------------------------------- /database/factories/OutstationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/OutstationFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2014_11_06_131203_create_genders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2014_11_06_131203_create_genders_table.php -------------------------------------------------------------------------------- /database/migrations/2014_11_06_131606_create_departments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2014_11_06_131606_create_departments_table.php -------------------------------------------------------------------------------- /database/migrations/2014_11_06_131700_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2014_11_06_131700_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2020_11_06_132251_create_attende_types_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2020_11_06_132251_create_attende_types_table.php -------------------------------------------------------------------------------- /database/migrations/2020_11_06_132319_create_attende_statuses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2020_11_06_132319_create_attende_statuses_table.php -------------------------------------------------------------------------------- /database/migrations/2020_11_06_132431_create_attende_codes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2020_11_06_132431_create_attende_codes_table.php -------------------------------------------------------------------------------- /database/migrations/2020_11_06_132453_create_attendes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2020_11_06_132453_create_attendes_table.php -------------------------------------------------------------------------------- /database/migrations/2020_11_06_135612_create_absent_permissions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2020_11_06_135612_create_absent_permissions_table.php -------------------------------------------------------------------------------- /database/migrations/2020_11_18_033614_create_holidays_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2020_11_18_033614_create_holidays_table.php -------------------------------------------------------------------------------- /database/migrations/2020_12_08_191855_create_outstations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2020_12_08_191855_create_outstations_table.php -------------------------------------------------------------------------------- /database/migrations/2020_12_08_204630_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2020_12_08_204630_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2021_01_07_224603_create_leave_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_01_07_224603_create_leave_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2021_01_07_224658_create_paid_leaves_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_01_07_224658_create_paid_leaves_table.php -------------------------------------------------------------------------------- /database/migrations/2021_01_08_100545_create_government_employee_groups_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_01_08_100545_create_government_employee_groups_table.php -------------------------------------------------------------------------------- /database/migrations/2021_01_08_100920_add_government_employee_group_id_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_01_08_100920_add_government_employee_group_id_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2021_01_25_133347_create_approval_statuses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_01_25_133347_create_approval_statuses_table.php -------------------------------------------------------------------------------- /database/migrations/2021_01_25_133709_add_approval_status_id_column_to_absent_permissions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_01_25_133709_add_approval_status_id_column_to_absent_permissions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_01_25_133736_add_approval_status_id_column_to_outstations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_01_25_133736_add_approval_status_id_column_to_outstations_table.php -------------------------------------------------------------------------------- /database/migrations/2021_01_25_133810_add_approval_status_id_column_to_paid_leaves_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_01_25_133810_add_approval_status_id_column_to_paid_leaves_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_01_165053_add_date_of_birth_column_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2021_02_01_165053_add_date_of_birth_column_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_31_104359_add_is_active_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/migrations/2022_03_31_104359_add_is_active_to_users_table.php -------------------------------------------------------------------------------- /database/seeders/AbsentPermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/AbsentPermissionSeeder.php -------------------------------------------------------------------------------- /database/seeders/ApprovalStatusSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/ApprovalStatusSeeder.php -------------------------------------------------------------------------------- /database/seeders/AttendeCodeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/AttendeCodeSeeder.php -------------------------------------------------------------------------------- /database/seeders/AttendeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/AttendeSeeder.php -------------------------------------------------------------------------------- /database/seeders/AttendeStatusSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/AttendeStatusSeeder.php -------------------------------------------------------------------------------- /database/seeders/AttendeTypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/AttendeTypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/DepartmentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/DepartmentSeeder.php -------------------------------------------------------------------------------- /database/seeders/GenderSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/GenderSeeder.php -------------------------------------------------------------------------------- /database/seeders/GovernmentEmployeeGroupSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/GovernmentEmployeeGroupSeeder.php -------------------------------------------------------------------------------- /database/seeders/HolidaySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/HolidaySeeder.php -------------------------------------------------------------------------------- /database/seeders/LeaveCategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/LeaveCategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/OutstationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/OutstationSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /database/seeds/DataRowsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/DataRowsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DataTypesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/DataTypesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/MenuItemsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/MenuItemsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/MenusTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/MenusTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionRoleTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/PermissionRoleTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/PermissionsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/RolesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/SettingsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/TranslationsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/TranslationsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/VoyagerDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/VoyagerDatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/VoyagerDummyDatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/database/seeds/VoyagerDummyDatabaseSeeder.php -------------------------------------------------------------------------------- /hooks/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/hooks/hooks.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/buttons.html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/assets/buttons.html5.js -------------------------------------------------------------------------------- /public/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/assets/images/logo.png -------------------------------------------------------------------------------- /public/assets/images/not_found_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/assets/images/not_found_placeholder.png -------------------------------------------------------------------------------- /public/assets/images/weekend_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/assets/images/weekend_placeholder.png -------------------------------------------------------------------------------- /public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/assets/logo.png -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/Pages/Home/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/js/Pages/Home/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Statistic/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/js/Pages/Statistic/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Table/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/js/Pages/Table/Index.vue -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/js/components/Line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/js/components/Line.vue -------------------------------------------------------------------------------- /resources/js/components/Pie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/js/components/Pie.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/voyager/users/edit-add.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/vendor/voyager/users/edit-add.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanaidilp/sistem_absensi_pegawai/HEAD/webpack.mix.js --------------------------------------------------------------------------------