File: D:/HostingSpaces/BVerhoeven/verhoevendak.nl/app/Komma/Projects/Models/ProjectCategory.php
<?php
/**
* Short description for the file.
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
namespace Komma\Projects\Models;
use Illuminate\Database\Eloquent\Model;
use Komma\Kms\Core\Routes\RoutableInterface;
class ProjectCategory extends Model
{
protected $table = 'project_categories';
protected $fillable = ['name', 'project_id', 'category_id'];
public function project()
{
return $this->belongsTo('Komma\Kms\Categories\Models\Project');
}
}