Files
vuefilemanager/app/Models/LanguageTranslation.php
2021-04-25 09:02:00 +02:00

21 lines
318 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @method static whereLang(string $string)
*/
class LanguageTranslation extends Model
{
public $timestamps = false;
public $primaryKey = null;
public $incrementing = false;
protected $fillable = [
'value',
];
}