18 lines
345 B
PHP
18 lines
345 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class StaffPayment extends Model
|
|
{
|
|
protected $fillable = [
|
|
'staff_id', 'amount', 'payment_date', 'payment_type', 'status', 'remarks', 'settlement_month', 'batch_id'
|
|
];
|
|
|
|
public function staff()
|
|
{
|
|
return $this->belongsTo(Staff::class);
|
|
}
|
|
}
|