Institute.php 364 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Institute extends Model
  5. {
  6. protected $table = "institutes";
  7. public function destination(){
  8. return $this->belongsTo('App\Models\Destination','destination_id','id');
  9. }
  10. public function courses(){
  11. return $this->hasMany('App\Models\Course','institute_id');
  12. }
  13. }