class = $class; $this->func = $func; $this->condition = $condition; } /** * Execute the job. * * @return void */ public function handle() { $builder = call_user_func_array([$this->class, $this->func], $this->condition); dd($builder); //file_put_contents("") } }