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