base commit
This commit is contained in:
42
app/Models/SickLeave.php
Normal file
42
app/Models/SickLeave.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
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 SickLeave extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
use LogsHrActivity;
|
||||
use SoftDeletes;
|
||||
|
||||
protected $fillable = [
|
||||
'employee_id',
|
||||
'start_date',
|
||||
'end_date',
|
||||
'days',
|
||||
'medical_institution',
|
||||
'reason',
|
||||
'document_path',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'start_date' => 'date',
|
||||
'end_date' => 'date',
|
||||
'days' => 'integer',
|
||||
];
|
||||
}
|
||||
|
||||
public function employee(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Employee::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user