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