17 lines
218 B
PHP
17 lines
218 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class Proposal extends Model
|
||
|
|
{
|
||
|
|
//
|
||
|
|
|
||
|
|
public function invitations()
|
||
|
|
{
|
||
|
|
$this->morphMany(Invitation::class, 'inviteable');
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|