├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Department.php ├── Employee.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ ├── DepartmentController.php │ │ ├── DownloadController.php │ │ ├── EmployeeController.php │ │ ├── HomeController.php │ │ ├── PayrollController.php │ │ └── RoleController.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Payroll.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Role.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 ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_02_12_084854_create_employees_table.php │ ├── 2018_02_12_085037_create_departments_table.php │ ├── 2018_02_12_085056_create_roles_table.php │ └── 2018_02_12_085116_create_payrolls_table.php └── seeds │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── app.css │ └── pdfdownload.css ├── favicon.ico ├── fonts │ └── vendor │ │ └── bootstrap-sass │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── index.php ├── js │ └── app.js ├── mix-manifest.json └── robots.txt ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── department │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── employee │ ├── bin.blade.php │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade.php │ └── nav.blade.php │ ├── payroll │ ├── bin.blade.php │ ├── create.blade.php │ ├── download │ │ ├── allpayroll.blade.php │ │ └── singlepayroll.blade.php │ ├── edit.blade.php │ └── payroll.blade.php │ ├── role │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── fonts │ ├── 31cd81eab5dea127308bcf91d4b7591b.ttf │ ├── 31cd81eab5dea127308bcf91d4b7591b.ufm │ ├── Helvetica-Bold.afm.php │ ├── Helvetica.afm.php │ ├── Times-Roman.afm.php │ └── dompdf_font_family_cache.php ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Department.php -------------------------------------------------------------------------------- /app/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Employee.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DepartmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/DepartmentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DownloadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/DownloadController.php -------------------------------------------------------------------------------- /app/Http/Controllers/EmployeeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/EmployeeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PayrollController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/PayrollController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Controllers/RoleController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Payroll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Payroll.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/Role.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/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/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2018_02_12_084854_create_employees_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/database/migrations/2018_02_12_084854_create_employees_table.php -------------------------------------------------------------------------------- /database/migrations/2018_02_12_085037_create_departments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/database/migrations/2018_02_12_085037_create_departments_table.php -------------------------------------------------------------------------------- /database/migrations/2018_02_12_085056_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/database/migrations/2018_02_12_085056_create_roles_table.php -------------------------------------------------------------------------------- /database/migrations/2018_02_12_085116_create_payrolls_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/database/migrations/2018_02_12_085116_create_payrolls_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/pdfdownload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/css/pdfdownload.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/department/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/department/create.blade.php -------------------------------------------------------------------------------- /resources/views/department/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/department/edit.blade.php -------------------------------------------------------------------------------- /resources/views/department/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/department/index.blade.php -------------------------------------------------------------------------------- /resources/views/department/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/department/show.blade.php -------------------------------------------------------------------------------- /resources/views/employee/bin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/employee/bin.blade.php -------------------------------------------------------------------------------- /resources/views/employee/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/employee/create.blade.php -------------------------------------------------------------------------------- /resources/views/employee/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/employee/edit.blade.php -------------------------------------------------------------------------------- /resources/views/employee/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/employee/index.blade.php -------------------------------------------------------------------------------- /resources/views/employee/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/employee/show.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/layouts/nav.blade.php -------------------------------------------------------------------------------- /resources/views/payroll/bin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/payroll/bin.blade.php -------------------------------------------------------------------------------- /resources/views/payroll/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/payroll/create.blade.php -------------------------------------------------------------------------------- /resources/views/payroll/download/allpayroll.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/payroll/download/allpayroll.blade.php -------------------------------------------------------------------------------- /resources/views/payroll/download/singlepayroll.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/payroll/download/singlepayroll.blade.php -------------------------------------------------------------------------------- /resources/views/payroll/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/payroll/edit.blade.php -------------------------------------------------------------------------------- /resources/views/payroll/payroll.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/payroll/payroll.blade.php -------------------------------------------------------------------------------- /resources/views/role/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/role/create.blade.php -------------------------------------------------------------------------------- /resources/views/role/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/role/edit.blade.php -------------------------------------------------------------------------------- /resources/views/role/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/role/index.blade.php -------------------------------------------------------------------------------- /resources/views/role/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/role/show.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/fonts/31cd81eab5dea127308bcf91d4b7591b.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/storage/fonts/31cd81eab5dea127308bcf91d4b7591b.ttf -------------------------------------------------------------------------------- /storage/fonts/31cd81eab5dea127308bcf91d4b7591b.ufm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/storage/fonts/31cd81eab5dea127308bcf91d4b7591b.ufm -------------------------------------------------------------------------------- /storage/fonts/Helvetica-Bold.afm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/storage/fonts/Helvetica-Bold.afm.php -------------------------------------------------------------------------------- /storage/fonts/Helvetica.afm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/storage/fonts/Helvetica.afm.php -------------------------------------------------------------------------------- /storage/fonts/Times-Roman.afm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/storage/fonts/Times-Roman.afm.php -------------------------------------------------------------------------------- /storage/fonts/dompdf_font_family_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/storage/fonts/dompdf_font_family_cache.php -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.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/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasilolly/Employee-Payroll-with-laravel-framework/HEAD/yarn.lock --------------------------------------------------------------------------------