- add send CV status

This commit is contained in:
2023-08-04 16:25:09 +02:00
parent 6a033d108c
commit 2a2869e2c6
10 changed files with 104 additions and 11 deletions

View File

@@ -21,6 +21,7 @@ use Illuminate\Database\Eloquent\Relations\HasMany;
* @property string|null $position
* @property string|null $notes
* @property int $views
* @property bool $sended
*/
class CV extends Model
{
@@ -31,6 +32,8 @@ class CV extends Model
protected $casts = [
'locations' => 'array',
'views' => 'integer',
'sended' => 'boolean',
'sended_timestamp' => 'datetime',
];
protected function phoneNumber(): Attribute