mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
21 lines
318 B
PHP
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',
|
|
];
|
|
}
|