26 lines
469 B
PHP
26 lines
469 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SalaryAdvanceDeduction extends Model
|
|
{
|
|
use \Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
protected $fillable = [
|
|
'staff_id',
|
|
'advance_amount',
|
|
'total_months',
|
|
'monthly_deduction',
|
|
'remaining_amount',
|
|
'paid_amount',
|
|
'status'
|
|
];
|
|
|
|
public function staff()
|
|
{
|
|
return $this->belongsTo(Staff::class);
|
|
}
|
|
}
|