whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
Recruit
/
Console
/
Upload File:
files >> /home/kckglobal/www/portal/Modules/Recruit/Console/JobEndDateCheck.php
<?php namespace Modules\Recruit\Console; use App\Models\Company; use Carbon\Carbon; use Illuminate\Console\Command; use Modules\Recruit\Entities\RecruitJob; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputOption; class JobEndDateCheck extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'job-end-date-check'; /** * The console command description. * * @var string */ protected $description = 'Check end date of job and set it close after date specified in database'; /** * Execute the console command. * * @return mixed */ public function handle() { $companies = Company::select('id', 'timezone')->get(); foreach ($companies as $company) { $events = RecruitJob::select('id', 'title', 'start_date', 'end_date', 'status') ->whereNotNull('end_date') ->where('end_date', '<', now($company->timezone)->format('Y-m-d H:i:s')) ->get(); if ($events->count() > 0) { foreach ($events as $job) { $updateJob = RecruitJob::findOrFail($job->id); $updateJob->status = 'closed'; $updateJob->update(); } } } } /** * Get the console command arguments. * * @return array */ protected function getArguments() { return [ ['example', InputArgument::REQUIRED, 'An example argument.'], ]; } /** * Get the console command options. * * @return array */ protected function getOptions() { return [ ['example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null], ]; } }
Copyright ©2021 || Defacer Indonesia