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

18 lines
341 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class InvestorPayout extends Model
{
protected $fillable = [
'investor_id', 'amount', 'payout_date', 'payout_month', 'status', 'payment_method', 'remarks'
];
public function investor()
{
return $this->belongsTo(Investor::class);
}
}