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