base commit
This commit is contained in:
38
app/Models/Explanation.php
Normal file
38
app/Models/Explanation.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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 Explanation extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
use LogsHrActivity;
|
||||
use SoftDeletes;
|
||||
|
||||
protected $fillable = [
|
||||
'employee_id',
|
||||
'explanation_date',
|
||||
'reason',
|
||||
'description',
|
||||
'attachment_path',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'explanation_date' => 'date',
|
||||
];
|
||||
}
|
||||
|
||||
public function employee(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Employee::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user