florida_gym/app/Models/StaffPayment.php
2026-03-11 11:03:12 +05:30

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);
}
}