You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
458 B
PHP
26 lines
458 B
PHP
<?php namespace App\Models;
|
|
|
|
|
|
class Asset extends BaseSoftDeleteModel
|
|
{
|
|
protected $table = 'asset';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'uid', 'orgin_name', 'name', 'path', 'type', 'size', 'width', 'height', 'count', 'ext'
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be hidden for arrays.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $hidden = [
|
|
];
|
|
|
|
}
|