<?php
/**
* Short description for the file.
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
namespace Komma\Kms\Languages;
use Illuminate\Database\Eloquent\Model;
class Language extends Model{
protected $table = 'languages';
public function shops(){
return $this->belongsToMany('Komma\Kms\Shops\Shop', 'shop_language');
}
}