BelongsToCategoryTrait.php 263 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: sdf_sky
  5. * Date: 2016/11/10
  6. * Time: 下午4:15
  7. */
  8. namespace App\Models\Relations;
  9. trait BelongsToCategoryTrait
  10. {
  11. public function category()
  12. {
  13. return $this->belongsTo('App\Models\Category');
  14. }
  15. }