argument('recipient'); $email = $this->argument('email'); $phone = $this->argument('phone'); $locations = $this->argument('location'); CV::query() ->create([ 'token' => Str::random(50), 'recipient' => $recipient, 'email' => $email, 'phone_number' => $phone, 'locations' => $locations, ]); $this->info('Created!'); return CommandAlias::SUCCESS; } }