mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
17 lines
247 B
PHP
17 lines
247 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LanguageString extends Model
|
|
{
|
|
public $timestamps = false;
|
|
|
|
// public $incrementing = false;
|
|
|
|
protected $fillable = ['value', 'language_id' ,'key', 'lang'];
|
|
|
|
|
|
}
|