- add CV management

This commit is contained in:
2023-06-16 13:41:39 +02:00
parent 9518d6a811
commit 390c5b8087
8 changed files with 173 additions and 3 deletions

View File

@@ -28,13 +28,15 @@ class CreateCV extends Command
CV::query()
->create([
// 'slug' => Str::ra,
'token' => Str::random(50),
'recipient' => $recipient,
'email' => $email,
'phone-number' => $phone,
'phone_number' => $phone,
'locations' => $locations,
]);
$this->info('Created!');
return CommandAlias::SUCCESS;
}
}