| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class PageView extends Model |
||
| 12 | { |
||
| 13 | use HasResource; |
||
| 14 | |||
| 15 | protected $table = 'static_page_page_views'; |
||
| 16 | |||
| 17 | protected $appends = [ |
||
| 18 | 'user', 'activity_instance', 'module_instance' |
||
| 19 | ]; |
||
| 20 | |||
| 21 | protected $fillable = [ |
||
| 22 | 'viewed_by' |
||
| 23 | ]; |
||
| 24 | |||
| 25 | 5 | public function getUserAttribute() |
|
| 28 | } |
||
| 29 | |||
| 30 | 3 | public function getActivityInstanceAttribute() |
|
| 33 | } |
||
| 34 | |||
| 35 | 3 | public function getModuleInstanceAttribute() |
|
| 40 | } |