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