123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/6/6
- * Time: 15:32
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class Category extends Model
- {
- //
- protected $table = 'category';
- protected $guarded = [];
- public function ct()
- {
- return $this->hasMany('App\Models\CategoryTopic','category_id','id');
- }
- }
|