Просмотр файла app/Models/Blog.php

Размер файла: 1.63Kb
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Models;
  6.  
  7. use Illuminate\Database\Eloquent\Collection;
  8. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  9. use Illuminate\Database\Eloquent\Relations\HasMany;
  10. use Illuminate\Database\Eloquent\Relations\HasOne;
  11.  
  12. /**
  13. * Class Category
  14. *
  15. * @property int id
  16. * @property int sort
  17. * @property int parent_id
  18. * @property string name
  19. * @property int count_articles
  20. * @property int closed
  21. * @property Collection children
  22. */
  23. class Blog extends BaseModel
  24. {
  25. /**
  26. * Indicates if the model should be timestamped.
  27. *
  28. * @var bool
  29. */
  30. public $timestamps = false;
  31.  
  32. /**
  33. * The attributes that aren't mass assignable.
  34. *
  35. * @var array
  36. */
  37. protected $guarded = [];
  38.  
  39. /**
  40. * Возвращает связь родительской категории
  41. *
  42. * @return BelongsTo
  43. */
  44. public function parent(): BelongsTo
  45. {
  46. return $this->belongsTo(self::class, 'parent_id')->withDefault();
  47. }
  48.  
  49. /**
  50. * Возвращает связь подкатегорий
  51. *
  52. * @return HasMany
  53. */
  54. public function children(): HasMany
  55. {
  56. return $this->hasMany(self::class, 'parent_id')->orderBy('sort');
  57. }
  58.  
  59. /**
  60. * Возвращает количество статей за последние 3 дня
  61. *
  62. * @return hasOne
  63. */
  64. public function new(): hasOne
  65. {
  66. return $this->hasOne(Article::class, 'category_id')
  67. ->selectRaw('category_id, count(*) as count_articles')
  68. ->where('created_at', '>', strtotime('-3 day', SITETIME))
  69. ->groupBy('category_id');
  70. }
  71. }