25 lines
461 B
PHP
25 lines
461 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Investor extends Model
|
|
{
|
|
protected $fillable = [
|
|
'name',
|
|
'investment_date',
|
|
'investment_amount',
|
|
'applicable_to_all_branches',
|
|
'roi_type',
|
|
'roi_value',
|
|
'roi_period',
|
|
'security_proof_document'
|
|
];
|
|
|
|
public function branches()
|
|
{
|
|
return $this->belongsToMany(Branch::class, 'investor_branch');
|
|
}
|
|
}
|