2018-10-22 14:04:37 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2018-11-02 11:54:46 +01:00
|
|
|
class Proposal extends BaseModel
|
2018-10-22 14:04:37 +02:00
|
|
|
{
|
|
|
|
//
|
|
|
|
|
|
|
|
public function invitations()
|
|
|
|
{
|
|
|
|
$this->morphMany(Invitation::class, 'inviteable');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|