blessing-skin-server/app/Models/Texture.php
2018-07-16 11:10:01 +08:00

36 lines
692 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Texture extends Model
{
public $primaryKey = 'tid';
public $timestamps = false;
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'tid' => 'integer',
'likes' => 'integer',
'size' => 'integer',
'uploader' => 'integer',
'public' => 'boolean',
];
public function setPrivacy($public)
{
$this->public = $public;
return $this->save();
}
public function scopeLike($query, $field, $value)
{
return $query->where($field, 'LIKE', "%$value%");
}
}