41 lines
848 B
PHP
41 lines
848 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\DocumentType;
|
|
use App\Models\Concerns\LogsHrActivity;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class EmployeeDocument extends Model
|
|
{
|
|
use HasFactory;
|
|
use LogsHrActivity;
|
|
use SoftDeletes;
|
|
|
|
protected $fillable = [
|
|
'employee_id',
|
|
'document_type',
|
|
'title',
|
|
'file_path',
|
|
'uploaded_at',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'document_type' => DocumentType::class,
|
|
'uploaded_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
public function employee(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Employee::class);
|
|
}
|
|
}
|