<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Tag extends Model
{
protected $fillable = ['name'];
protected $primaryKey = 'id';
// Inverse Relationship With Tags
public function interships()
{
return $this->morphedByMany('Models\App\Internship', 'taggable');
}
}