<?php
declare(strict_types=1);
namespace App\Models;
use App\Traits\CategoryTreeTrait;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
/**
* Class Load
*
* @property int id
* @property int sort
* @property int parent_id
* @property string name
* @property int count_downs
* @property int closed
* @property Load parent
* @property Collection children
*/
class Load extends BaseModel
{
use CategoryTreeTrait;
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
/**
* Возвращает связь родительской категории
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id')->withDefault();
}
/**
* Возвращает связь подкатегорий
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id')->orderBy('sort');
}
/**
* Возвращает количество загрузок за последние 3 дней
*
* @return hasOne
*/
public function new(): hasOne
{
return $this->hasOne(Down::class, 'category_id')
->selectRaw('category_id, count(*) as count_downs')
->where('active', 1)
->where('created_at', '>', strtotime('-3 day', SITETIME))
->groupBy('category_id');
}
}