University.php 249 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class University extends Model
  5. {
  6. protected $guarded=['id'];
  7. public function country(){
  8. return $this->belongsTo('App\Country','country_id','id');
  9. }
  10. }