<?php
/**
* Short description for the file.
*
* @author Komma <support@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
namespace Komma\Projects\Models;
use Illuminate\Database\Eloquent\Model;
class ProjectLocation extends Model
{
protected $table = '4pp';
public function projectTranslation()
{
return $this->belongsTo('Komma\Kms\Categories\Models\ProjectTranslation');
}
}