| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentSupport\App\Models; |
| 4 |
|
| 5 |
class Activity extends Model |
| 6 |
{ |
| 7 |
protected $table = 'fs_activities'; |
| 8 |
|
| 9 |
protected $fillable = ['person_id', 'person_type', 'event_type', 'object_id', 'object_type', 'description']; |
| 10 |
|
| 11 |
public function person() |
| 12 |
{ |
| 13 |
$class = __NAMESPACE__ . '\Person'; |
| 14 |
|
| 15 |
return $this->belongsTo( |
| 16 |
$class, 'person_id', 'id' |
| 17 |
); |
| 18 |
} |
| 19 |
} |
| 20 |
|