faithgen /
events
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Innoflash\Events\Traits; |
||
| 4 | |||
| 5 | use Innoflash\Events\Models\Event; |
||
| 6 | |||
| 7 | trait HasManyEvents |
||
| 8 | { |
||
| 9 | public function events() |
||
| 10 | { |
||
| 11 | return $this->hasMany(Event::class); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 12 | } |
||
| 13 | } |
||
| 14 |