mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-17 15:52:15 +00:00
Merge branch 'language-translation' into version-1.8.3
This commit is contained in:
16
app/LanguageString.php
Normal file
16
app/LanguageString.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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'];
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user