]> BookStack Code Mirror - bookstack/blob - app/View.php
Fixes a corner case with exclamation in the ID.
[bookstack] / app / View.php
1 <?php namespace BookStack;
2
3 class View extends Model
4 {
5
6     protected $fillable = ['user_id', 'views'];
7
8     /**
9      * Get all owning viewable models.
10      * @return \Illuminate\Database\Eloquent\Relations\MorphTo
11      */
12     public function viewable()
13     {
14         return $this->morphTo();
15     }
16 }
Morty Proxy This is a proxified and sanitized view of the page, visit original site.