Files
vuefilemanager/app/Language.php
Milos Holba a8457cf261 first commit
2021-01-11 15:36:41 +01:00

19 lines
312 B
PHP

<?php
namespace App;
use App\LanguageString;
use Illuminate\Database\Eloquent\Model;
class Language extends Model
{
public $timestamps = false;
protected $guarded = ['id'];
public function languegeStrings()
{
return $this->hasMany('App\LanguageString', 'language_id', 'id');
}
}