Campus.php 248 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Campus extends Model
  5. {
  6. protected $table = "campuses";
  7. public function institute(){
  8. return $this->belongsTo('App\Models\Institute','institute_id','id');
  9. }
  10. }