mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-09 12:02:17 +00:00
13 lines
169 B
PHP
13 lines
169 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LanguageString extends Model
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $guarded = ['id'];
|
|
}
|