mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
14 lines
216 B
PHP
14 lines
216 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ComplementaryActivity extends Model
|
|
{
|
|
public function pictures()
|
|
{
|
|
return $this->morphMany('App\Picture', 'pictureable');
|
|
}
|
|
}
|