├── public ├── favicon.ico ├── robots.txt ├── images │ ├── money.png │ ├── calendar.png │ ├── location.png │ ├── sand-clock.png │ ├── play-button.png │ ├── icons │ │ ├── icon-72x72.png │ │ ├── icon-96x96.png │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── splash-1125x2436.png │ │ ├── splash-1242x2208.png │ │ ├── splash-1242x2688.png │ │ ├── splash-1536x2048.png │ │ ├── splash-1668x2224.png │ │ ├── splash-1668x2388.png │ │ ├── splash-2048x2732.png │ │ ├── splash-640x1136.png │ │ ├── splash-750x1334.png │ │ └── splash-828x1792.png │ ├── no_listing.svg │ └── void.svg ├── mix-manifest.json ├── .htaccess ├── web.config ├── serviceworker.js └── index.php ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── views │ ├── vendor │ │ └── laravelpwa │ │ │ ├── offline.blade.php │ │ │ └── meta.blade.php │ ├── home.blade.php │ ├── auth │ │ ├── verify.blade.php │ │ ├── passwords │ │ │ ├── email.blade.php │ │ │ ├── confirm.blade.php │ │ │ └── reset.blade.php │ │ ├── login.blade.php │ │ └── register.blade.php │ ├── jobs │ │ ├── listings.blade.php │ │ ├── details.blade.php │ │ ├── dashboard.blade.php │ │ └── create.blade.php │ └── layouts │ │ └── app.blade.php ├── sass │ ├── app.scss │ └── _variables.scss └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ ├── passwords.php │ └── validation.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore ├── debugbar │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── database ├── .gitignore ├── seeders │ └── DatabaseSeeder.php ├── factories │ ├── JoblistingFactory.php │ └── UserFactory.php └── migrations │ ├── 2020_11_29_080352_add_username_to_users_table.php │ ├── 2020_11_29_192452_add_stipend_to_joblistings_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2020_11_29_115904_create_joblistings_table.php │ └── 2020_11_29_174122_add_fields_to_joblisting_table.php ├── .gitattributes ├── app ├── Http │ ├── Controllers │ │ ├── GithubJobsController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── DashboardController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── ResetPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── VerificationController.php │ │ │ └── RegisterController.php │ │ └── JobsController.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrustProxies.php │ │ ├── Authenticate.php │ │ └── RedirectIfAuthenticated.php │ └── Kernel.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Models │ ├── Joblisting.php │ └── User.php ├── Exceptions │ └── Handler.php └── Console │ └── Kernel.php ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── .gitignore ├── .styleci.yml ├── .editorconfig ├── webpack.mix.js ├── routes ├── channels.php ├── api.php ├── console.php └── web.php ├── server.php ├── config ├── cors.php ├── services.php ├── view.php ├── hashing.php ├── broadcasting.php ├── laravelpwa.php ├── filesystems.php ├── queue.php ├── logging.php ├── cache.php ├── mail.php ├── auth.php ├── database.php ├── session.php └── app.php ├── .env.example ├── LICENSE ├── package.json ├── phpunit.xml ├── artisan ├── composer.json └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/images/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/money.png -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /public/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/calendar.png -------------------------------------------------------------------------------- /public/images/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/location.png -------------------------------------------------------------------------------- /public/images/sand-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/sand-clock.png -------------------------------------------------------------------------------- /public/images/play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/play-button.png -------------------------------------------------------------------------------- /public/images/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/icon-72x72.png -------------------------------------------------------------------------------- /public/images/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/icon-96x96.png -------------------------------------------------------------------------------- /public/images/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/images/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/images/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/images/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/icon-384x384.png -------------------------------------------------------------------------------- /public/images/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/images/icons/splash-1125x2436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-1125x2436.png -------------------------------------------------------------------------------- /public/images/icons/splash-1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-1242x2208.png -------------------------------------------------------------------------------- /public/images/icons/splash-1242x2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-1242x2688.png -------------------------------------------------------------------------------- /public/images/icons/splash-1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-1536x2048.png -------------------------------------------------------------------------------- /public/images/icons/splash-1668x2224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-1668x2224.png -------------------------------------------------------------------------------- /public/images/icons/splash-1668x2388.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-1668x2388.png -------------------------------------------------------------------------------- /public/images/icons/splash-2048x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-2048x2732.png -------------------------------------------------------------------------------- /public/images/icons/splash-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-640x1136.png -------------------------------------------------------------------------------- /public/images/icons/splash-750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-750x1334.png -------------------------------------------------------------------------------- /public/images/icons/splash-828x1792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriticalflare/CareerSearch/main/public/images/icons/splash-828x1792.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /resources/views/vendor/laravelpwa/offline.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 | 5 |
9 |
10 |
11 |
12 |
13 |
16 |
17 |
18 |
19 |
20 |
23 |
24 |
25 |
21 | {{ $job->location }}
22 |
27 | START DATE
28 |{{ \Carbon\Carbon::parse($job->apply_by)->format('j F, Y')}}
30 |
34 | DURATION
35 |{{ $job->duration}}
37 |
41 | STIPEND
42 |₹ {{ $job->stipend}}
44 |
48 | APPLY BY
49 |{{ \Carbon\Carbon::parse($job->apply_by)->format('j F, Y') }}
51 |
19 | {{ $job->location }}
20 |
25 | START DATE
26 |{{ \Carbon\Carbon::parse($job->apply_by)->format('j F, Y')}}
28 |
32 | DURATION
33 |{{ $job->duration}}
35 |
39 | STIPEND
40 |₹ {{ $job->stipend}}
42 |
46 | APPLY BY
47 |{{ \Carbon\Carbon::parse($job->apply_by)->format('j F, Y') }}
49 |{{ $job->description }}
59 |{{ $job->requirements }}
65 |
21 | {{ $job->location }}
22 |
27 | START DATE
28 |{{ \Carbon\Carbon::parse($job->apply_by)->format('j F, Y')}}
30 |
34 | DURATION
35 |{{ $job->duration}}
37 |
41 | STIPEND
42 |₹ {{ $job->stipend}}
44 |
48 | APPLY BY
49 |{{ \Carbon\Carbon::parse($job->apply_by)->format('j F, Y') }}
51 |