24 lines
389 B
PHP
24 lines
389 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* @property string $uuid
|
|
* @property string $title
|
|
* @property string $description
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
* @property Carbon $deleted_at
|
|
*/
|
|
class Vacancy extends BaseModel
|
|
{
|
|
protected $fillable = [
|
|
'title',
|
|
'description',
|
|
];
|
|
}
|