12345678910111213141516171819202122 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class Topic extends Model
- {
-
- protected $table = 'topic';
- protected $guarded = [];
- public function follow()
- {
- return $this->hasMany('App\Models\MemberFollowTopic', 'topic_id', 'id');
- }
- }
|