39 lines
771 B
PHP
39 lines
771 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',
|
|
'size' => 'integer',
|
|
'uploader' => 'integer',
|
|
'public' => 'boolean',
|
|
];
|
|
|
|
public function getLikesAttribute()
|
|
{
|
|
return $this->likers()->count();
|
|
}
|
|
|
|
public function scopeLike($query, $field, $value)
|
|
{
|
|
return $query->where($field, 'LIKE', "%$value%");
|
|
}
|
|
|
|
public function likers()
|
|
{
|
|
return $this->belongsToMany(User::class, 'user_closet')->withPivot('item_name');
|
|
}
|
|
}
|