mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
11 lines
129 B
PHP
11 lines
129 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Traffic extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
}
|