Articletype.php 211 B

12345678910111213
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Articletype extends Model
  5. {
  6. //
  7. public function articletype(){
  8. return $this->hasOne('App\Article','articletype_id');
  9. }
  10. }