client_id = $client_id; } /** * Execute the job. * * @return void */ public function handle() { if (MicropubClient::where('client_url', $this->client_id)->count() == 0) { $client = MicropubClient::create([ 'client_url' => $this->client_id, 'client_name' => $this->client_id, // default client name is the URL ]); } } }