28 lines
508 B
PHP
28 lines
508 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Modules\HRM\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class Recruitment extends Model
|
||
|
|
{
|
||
|
|
protected $fillable = [
|
||
|
|
'restaurant_id',
|
||
|
|
'title',
|
||
|
|
'description',
|
||
|
|
'requirements',
|
||
|
|
'vacancy_count',
|
||
|
|
'department_id',
|
||
|
|
'designation_id',
|
||
|
|
'start_date',
|
||
|
|
'end_date',
|
||
|
|
'job_type',
|
||
|
|
'recruiter_id',
|
||
|
|
'status',
|
||
|
|
];
|
||
|
|
|
||
|
|
public const TABLE_NAME = 'recruitments';
|
||
|
|
|
||
|
|
protected $table = self::TABLE_NAME;
|
||
|
|
}
|