id = $id; } /** * Execute the job. * * @return void */ public function handle() { $id = $this->id; $profile = Profile::find($id); if(!$profile) { return 1; } $profile->status_count = $profile->status_count + 1; $profile->last_status_at = now(); $profile->save(); AccountService::del($id); return 1; } }