├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .idea ├── human-resources-management-system.iml ├── misc.xml ├── modules.xml ├── php.xml ├── vcs.xml └── workspace.xml ├── .php_cs ├── .php_cs.cache ├── app ├── Console │ └── Kernel.php ├── Enums │ └── FileFormat.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AttendanceController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── CandidatesController.php │ │ ├── Controller.php │ │ ├── EmployeeController.php │ │ ├── UserController.php │ │ ├── UserLeaveController.php │ │ ├── UserLeaveTypeController.php │ │ └── UserRoleController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── JsonMiddleware.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── AttendanceFormRequest.php │ │ ├── CandidatesFormRequest.php │ │ ├── EmployeeFormRequest.php │ │ ├── LoginFormRequest.php │ │ ├── UserFormRequest.php │ │ ├── UserLeaveFormRequest.php │ │ └── UserLeaveTypeFormRequest.php │ └── Resources │ │ ├── AttendanceResource.php │ │ ├── CandidatesResource.php │ │ ├── EmployeeResource.php │ │ ├── UserLeaveResource.php │ │ ├── UserLeaveTypeResource.php │ │ ├── UserResource.php │ │ └── UsersRoleResource.php ├── Models │ ├── Attendance.php │ ├── Candidates.php │ ├── Employee.php │ ├── User.php │ ├── UserLeave.php │ ├── UserLeaveType.php │ ├── UserProfile.php │ └── UserRole.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Traits │ └── BelongsToUser.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── jwt.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── EmployeeFactory.php │ └── UserFactory.php ├── migrations │ ├── 2013_03_01_115755_create_candidates_table.php │ ├── 2013_03_01_115755_create_user_role_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_12_19_170651_create_user_profiles_table.php │ ├── 2018_12_19_173427_create_user_leaves_table.php │ ├── 2019_02_28_110535_create_user_leave_types_table.php │ ├── 2019_03_13_145230_create_employee_table.php │ └── 2019_04_12_112233_create_attendance_table.php └── seeds │ ├── DatabaseSeeder.php │ ├── EmployeeTableSeeder.php │ ├── UserRolesTableSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── image │ └── background_image.jpg ├── images │ └── background_image.jpg ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt ├── svg │ ├── 403.svg │ ├── 404.svg │ ├── 500.svg │ └── 503.svg └── web.config ├── readme.md ├── resources ├── js │ ├── app.js │ ├── bootstrap.js │ ├── components │ │ ├── App.vue │ │ ├── Navbar.vue │ │ ├── NotFound.vue │ │ └── Sidebar.vue │ ├── datagrid │ │ ├── datagrid.vue │ │ ├── grid-actions.vue │ │ └── pagination.vue │ ├── lang │ │ ├── en.js │ │ └── tr.js │ ├── mixins │ │ ├── country.js │ │ ├── nationality.js │ │ └── options.js │ ├── pages │ │ └── AuthLogin.vue │ ├── router │ │ ├── index.js │ │ └── routes.js │ └── views │ │ ├── ApplicantsSettings │ │ ├── ApplicantsSettings.vue │ │ └── Candidates │ │ │ ├── CandidatesDeleteForm.vue │ │ │ ├── CandidatesForm.vue │ │ │ └── CandidatesList.vue │ │ ├── AttendanceSettings │ │ ├── Attendance │ │ │ ├── AttendanceDeleteForm.vue │ │ │ ├── AttendanceForm.vue │ │ │ └── AttendanceList.vue │ │ └── AttendanceSettings.vue │ │ ├── Dashboard │ │ └── Cards │ │ │ ├── ApplicantsCard.vue │ │ │ ├── AttendanceCard.vue │ │ │ ├── LeavesCard.vue │ │ │ ├── PeoplesCard.vue │ │ │ ├── UserRolesCard.vue │ │ │ └── UsersCard.vue │ │ ├── Home.vue │ │ ├── LeaveSettings │ │ ├── EmployeeLeaveList │ │ │ ├── EmployeeLeaveForm.vue │ │ │ └── EmployeeLeaveList.vue │ │ ├── LeaveType │ │ │ ├── LeaveTypeDeleteForm.vue │ │ │ ├── LeaveTypeForm.vue │ │ │ └── LeaveTypeList.vue │ │ └── LeavesSettings.vue │ │ ├── PeopleSettings │ │ ├── Employees │ │ │ ├── EmployeesDeleteForm.vue │ │ │ ├── EmployeesForm.vue │ │ │ ├── EmployeesList.vue │ │ │ └── EmployeesListDetails.vue │ │ └── PeoplesSettings.vue │ │ └── UserSettings │ │ ├── UsersList │ │ ├── UsersList.vue │ │ ├── UsersListDetails.vue │ │ └── UsersRoleForm.vue │ │ ├── UsersRoles │ │ ├── UsersRolesDeleteForm.vue │ │ └── UsersRolesList.vue │ │ └── UsersSettings.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _background_image.scss │ ├── _card.scss │ ├── _datagrid.scss │ ├── _login.scss │ ├── _modals.scss │ ├── _required.scss │ ├── _select.scss │ ├── _sidebar.scss │ ├── _tables.scss │ ├── _theme.scss │ ├── _variables.scss │ └── app.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── index.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 ├── tests ├── CreatesApplication.php ├── Feature │ ├── Api │ │ └── UserLeaveTest.php │ └── ExampleTest.php ├── TestCase.php ├── Unit │ └── ExampleTest.php └── support │ └── helpers.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/human-resources-management-system.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.idea/human-resources-management-system.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.php_cs -------------------------------------------------------------------------------- /.php_cs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/.php_cs.cache -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Enums/FileFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Enums/FileFormat.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AttendanceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/AttendanceController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CandidatesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/CandidatesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/EmployeeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/EmployeeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserLeaveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/UserLeaveController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserLeaveTypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/UserLeaveTypeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserRoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Controllers/UserRoleController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/JsonMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Middleware/JsonMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/AttendanceFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Requests/AttendanceFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CandidatesFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Requests/CandidatesFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/EmployeeFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Requests/EmployeeFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/LoginFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Requests/LoginFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Requests/UserFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserLeaveFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Requests/UserLeaveFormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserLeaveTypeFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Requests/UserLeaveTypeFormRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/AttendanceResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Resources/AttendanceResource.php -------------------------------------------------------------------------------- /app/Http/Resources/CandidatesResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Resources/CandidatesResource.php -------------------------------------------------------------------------------- /app/Http/Resources/EmployeeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Resources/EmployeeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/UserLeaveResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Resources/UserLeaveResource.php -------------------------------------------------------------------------------- /app/Http/Resources/UserLeaveTypeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Resources/UserLeaveTypeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Http/Resources/UsersRoleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Http/Resources/UsersRoleResource.php -------------------------------------------------------------------------------- /app/Models/Attendance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Models/Attendance.php -------------------------------------------------------------------------------- /app/Models/Candidates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Models/Candidates.php -------------------------------------------------------------------------------- /app/Models/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Models/Employee.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserLeave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Models/UserLeave.php -------------------------------------------------------------------------------- /app/Models/UserLeaveType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Models/UserLeaveType.php -------------------------------------------------------------------------------- /app/Models/UserProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Models/UserProfile.php -------------------------------------------------------------------------------- /app/Models/UserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Models/UserRole.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Traits/BelongsToUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/Traits/BelongsToUser.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/jwt.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/EmployeeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/factories/EmployeeFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2013_03_01_115755_create_candidates_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2013_03_01_115755_create_candidates_table.php -------------------------------------------------------------------------------- /database/migrations/2013_03_01_115755_create_user_role_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2013_03_01_115755_create_user_role_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2018_12_19_170651_create_user_profiles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2018_12_19_170651_create_user_profiles_table.php -------------------------------------------------------------------------------- /database/migrations/2018_12_19_173427_create_user_leaves_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2018_12_19_173427_create_user_leaves_table.php -------------------------------------------------------------------------------- /database/migrations/2019_02_28_110535_create_user_leave_types_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2019_02_28_110535_create_user_leave_types_table.php -------------------------------------------------------------------------------- /database/migrations/2019_03_13_145230_create_employee_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2019_03_13_145230_create_employee_table.php -------------------------------------------------------------------------------- /database/migrations/2019_04_12_112233_create_attendance_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/migrations/2019_04_12_112233_create_attendance_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/EmployeeTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/seeds/EmployeeTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UserRolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/seeds/UserRolesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/image/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/image/background_image.jpg -------------------------------------------------------------------------------- /public/images/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/images/background_image.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/svg/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/svg/403.svg -------------------------------------------------------------------------------- /public/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/svg/404.svg -------------------------------------------------------------------------------- /public/svg/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/svg/500.svg -------------------------------------------------------------------------------- /public/svg/503.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/svg/503.svg -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/readme.md -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/components/App.vue -------------------------------------------------------------------------------- /resources/js/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/components/Navbar.vue -------------------------------------------------------------------------------- /resources/js/components/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/components/NotFound.vue -------------------------------------------------------------------------------- /resources/js/components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/components/Sidebar.vue -------------------------------------------------------------------------------- /resources/js/datagrid/datagrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/datagrid/datagrid.vue -------------------------------------------------------------------------------- /resources/js/datagrid/grid-actions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/datagrid/grid-actions.vue -------------------------------------------------------------------------------- /resources/js/datagrid/pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/datagrid/pagination.vue -------------------------------------------------------------------------------- /resources/js/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/lang/en.js -------------------------------------------------------------------------------- /resources/js/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/lang/tr.js -------------------------------------------------------------------------------- /resources/js/mixins/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/mixins/country.js -------------------------------------------------------------------------------- /resources/js/mixins/nationality.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/mixins/nationality.js -------------------------------------------------------------------------------- /resources/js/mixins/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/mixins/options.js -------------------------------------------------------------------------------- /resources/js/pages/AuthLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/pages/AuthLogin.vue -------------------------------------------------------------------------------- /resources/js/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/router/index.js -------------------------------------------------------------------------------- /resources/js/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/router/routes.js -------------------------------------------------------------------------------- /resources/js/views/ApplicantsSettings/ApplicantsSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/ApplicantsSettings/ApplicantsSettings.vue -------------------------------------------------------------------------------- /resources/js/views/ApplicantsSettings/Candidates/CandidatesDeleteForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/ApplicantsSettings/Candidates/CandidatesDeleteForm.vue -------------------------------------------------------------------------------- /resources/js/views/ApplicantsSettings/Candidates/CandidatesForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/ApplicantsSettings/Candidates/CandidatesForm.vue -------------------------------------------------------------------------------- /resources/js/views/ApplicantsSettings/Candidates/CandidatesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/ApplicantsSettings/Candidates/CandidatesList.vue -------------------------------------------------------------------------------- /resources/js/views/AttendanceSettings/Attendance/AttendanceDeleteForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/AttendanceSettings/Attendance/AttendanceDeleteForm.vue -------------------------------------------------------------------------------- /resources/js/views/AttendanceSettings/Attendance/AttendanceForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/AttendanceSettings/Attendance/AttendanceForm.vue -------------------------------------------------------------------------------- /resources/js/views/AttendanceSettings/Attendance/AttendanceList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/AttendanceSettings/Attendance/AttendanceList.vue -------------------------------------------------------------------------------- /resources/js/views/AttendanceSettings/AttendanceSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/AttendanceSettings/AttendanceSettings.vue -------------------------------------------------------------------------------- /resources/js/views/Dashboard/Cards/ApplicantsCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/Dashboard/Cards/ApplicantsCard.vue -------------------------------------------------------------------------------- /resources/js/views/Dashboard/Cards/AttendanceCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/Dashboard/Cards/AttendanceCard.vue -------------------------------------------------------------------------------- /resources/js/views/Dashboard/Cards/LeavesCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/Dashboard/Cards/LeavesCard.vue -------------------------------------------------------------------------------- /resources/js/views/Dashboard/Cards/PeoplesCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/Dashboard/Cards/PeoplesCard.vue -------------------------------------------------------------------------------- /resources/js/views/Dashboard/Cards/UserRolesCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/Dashboard/Cards/UserRolesCard.vue -------------------------------------------------------------------------------- /resources/js/views/Dashboard/Cards/UsersCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/Dashboard/Cards/UsersCard.vue -------------------------------------------------------------------------------- /resources/js/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/Home.vue -------------------------------------------------------------------------------- /resources/js/views/LeaveSettings/EmployeeLeaveList/EmployeeLeaveForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/LeaveSettings/EmployeeLeaveList/EmployeeLeaveForm.vue -------------------------------------------------------------------------------- /resources/js/views/LeaveSettings/EmployeeLeaveList/EmployeeLeaveList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/LeaveSettings/EmployeeLeaveList/EmployeeLeaveList.vue -------------------------------------------------------------------------------- /resources/js/views/LeaveSettings/LeaveType/LeaveTypeDeleteForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/LeaveSettings/LeaveType/LeaveTypeDeleteForm.vue -------------------------------------------------------------------------------- /resources/js/views/LeaveSettings/LeaveType/LeaveTypeForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/LeaveSettings/LeaveType/LeaveTypeForm.vue -------------------------------------------------------------------------------- /resources/js/views/LeaveSettings/LeaveType/LeaveTypeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/LeaveSettings/LeaveType/LeaveTypeList.vue -------------------------------------------------------------------------------- /resources/js/views/LeaveSettings/LeavesSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/LeaveSettings/LeavesSettings.vue -------------------------------------------------------------------------------- /resources/js/views/PeopleSettings/Employees/EmployeesDeleteForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/PeopleSettings/Employees/EmployeesDeleteForm.vue -------------------------------------------------------------------------------- /resources/js/views/PeopleSettings/Employees/EmployeesForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/PeopleSettings/Employees/EmployeesForm.vue -------------------------------------------------------------------------------- /resources/js/views/PeopleSettings/Employees/EmployeesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/PeopleSettings/Employees/EmployeesList.vue -------------------------------------------------------------------------------- /resources/js/views/PeopleSettings/Employees/EmployeesListDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/PeopleSettings/Employees/EmployeesListDetails.vue -------------------------------------------------------------------------------- /resources/js/views/PeopleSettings/PeoplesSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/PeopleSettings/PeoplesSettings.vue -------------------------------------------------------------------------------- /resources/js/views/UserSettings/UsersList/UsersList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/UserSettings/UsersList/UsersList.vue -------------------------------------------------------------------------------- /resources/js/views/UserSettings/UsersList/UsersListDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/UserSettings/UsersList/UsersListDetails.vue -------------------------------------------------------------------------------- /resources/js/views/UserSettings/UsersList/UsersRoleForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/UserSettings/UsersList/UsersRoleForm.vue -------------------------------------------------------------------------------- /resources/js/views/UserSettings/UsersRoles/UsersRolesDeleteForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/UserSettings/UsersRoles/UsersRolesDeleteForm.vue -------------------------------------------------------------------------------- /resources/js/views/UserSettings/UsersRoles/UsersRolesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/UserSettings/UsersRoles/UsersRolesList.vue -------------------------------------------------------------------------------- /resources/js/views/UserSettings/UsersSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/js/views/UserSettings/UsersSettings.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_background_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_background_image.scss -------------------------------------------------------------------------------- /resources/sass/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_card.scss -------------------------------------------------------------------------------- /resources/sass/_datagrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_datagrid.scss -------------------------------------------------------------------------------- /resources/sass/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_login.scss -------------------------------------------------------------------------------- /resources/sass/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_modals.scss -------------------------------------------------------------------------------- /resources/sass/_required.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_required.scss -------------------------------------------------------------------------------- /resources/sass/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_select.scss -------------------------------------------------------------------------------- /resources/sass/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_sidebar.scss -------------------------------------------------------------------------------- /resources/sass/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_tables.scss -------------------------------------------------------------------------------- /resources/sass/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_theme.scss -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/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/kerimkuscu/Human-Resources-Management-System/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 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Api/UserLeaveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/tests/Feature/Api/UserLeaveTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/support/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/tests/support/helpers.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kerimkuscu/Human-Resources-Management-System/HEAD/webpack.mix.js --------------------------------------------------------------------------------