18 lines
341 B
PHP
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);
|
|
}
|
|
}
|