Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/Corals/modules/Jobs/routes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/Corals/modules/Jobs/routes/web.php
<?php

use Illuminate\Support\Facades\Route;

Route::group(['prefix' => 'admin'], function () {
    Route::resource('candidates', 'CandidatesController');
    Route::resource('employers', 'EmployersController');
    Route::resource('jobs', 'JobsController');
    Route::get('jobs/{job}/get-application-form', 'JobsApplicationController@getApplicationForm');
    //Route::post('jobs/{job}/submit-application', 'JobsApplicationController@submitApplication');
});
Route::group(['prefix' => ''], function () {
    Route::get('job-applications/{jobApplication}/update-status-form', 'JobsApplicationController@updateStatusForm');
    Route::put('job-applications/{jobApplication}/submit-update_status',
        'JobsApplicationController@submitUpdateStatus');
    Route::resource('job-applications', 'JobsApplicationController')->only(['index']);
});

Route::group(['prefix' => 'jobs/schedule'], function () {
    Route::get('get-date-form', 'JobsController@getDateForm');
    Route::get('get-time-form', 'JobsController@getTimeForm');
});

Route::get('jobs/import/job/get-import-modal', 'JobsImportController@getImportModal');
Route::get('jobs/import/job/download-import-sample', 'JobsImportController@downloadImportSample');
Route::post('jobs/import/job/upload-import-file', 'JobsImportController@uploadImportFile');

Route::get('jobs', 'PublicJobController@index');
Route::get('jobs/{slug}', 'PublicJobController@show');

Route::get('my-job-applications', 'MyJobsApplicationController@index');
Route::get('my-employer', 'EmployersController@myEmployer');
Route::get('my-jobs', 'JobsController@myJobs');
Route::get('my-job-applications-employer/{job}', 'MyJobsApplicationController@myJobApplicationsEmployer');
Route::get('my-candidate', 'CandidatesController@myCandidate');
Route::get('all-job-applications', 'MyJobsApplicationController@allEmployerJobApplications');

Route::post('jobs/{slug}/submit-application', 'MyJobsApplicationController@submitApplication');

Route::group(['prefix' => 'admin/employers'], function () {
    Route::get('branch/get-branch-form', 'EmployersController@getBranchForm');
});
Route::group(['prefix' => 'admin/candidates'], function () {
    Route::get('work/get-work-form', 'CandidatesController@getWorkForm');
});
Route::group(['prefix' => 'admin/candidates'], function () {
    Route::get('education/get-education-form', 'CandidatesController@getWorkForm');
});
Route::get('employers', 'PublicEmployerController@index');
Route::get('employers/{employer}', 'PublicEmployerController@show');

Route::get('candidates', 'PublicCandidateController@index');
Route::get('candidates/{candidate}', 'PublicCandidateController@show');

Route::post('candidates/{candidate}/rate', 'RatingController@submitCandidate');
Route::post('employers/{employer}/rate','RatingController@submitEmployer');

Spamworldpro Mini