1 | <?php |
||
7 | class Comment extends \Eloquent |
||
8 | { |
||
9 | protected $table = 'demo_comments'; |
||
10 | |||
11 | public function article() |
||
12 | { |
||
13 | return $this->belongsTo('\Tacone\Bees\Demo\Models\Article', 'article_id'); |
||
14 | } |
||
15 | |||
16 | public function author() |
||
17 | { |
||
18 | return $this->belongsTo('\Tacone\Bees\Demo\Models\Author', 'author_id'); |
||
19 | } |
||
20 | } |
||
21 |