27 lines
486 B
PHP
27 lines
486 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
|
|
|
class Follow extends Pivot
|
|
{
|
|
protected $table = 'follows';
|
|
|
|
protected $fillable = [
|
|
'customer_id',
|
|
'broker_id',
|
|
];
|
|
|
|
public function customer(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Customer::class);
|
|
}
|
|
|
|
public function broker(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Broker::class);
|
|
}
|
|
}
|