123 lines
2.2 KiB
PHP
Executable File
123 lines
2.2 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class Compilation
|
|
* @property string|null $title
|
|
* @property integer|null $position
|
|
* @property integer|null $category_id
|
|
* @property boolean|null $published
|
|
* @mixin Model
|
|
*/
|
|
class Compilation extends Model
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'title',
|
|
'position',
|
|
'published',
|
|
'category_id'
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'title' => 'array',
|
|
'position' => 'integer',
|
|
'published' => 'boolean',
|
|
'category_id' => 'integer'
|
|
];
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTitle(): string
|
|
{
|
|
return $this->title['ru'];
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isAviable(): bool
|
|
{
|
|
return $this->published;
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
*/
|
|
public function products()
|
|
{
|
|
return $this->belongsToMany(Product::class, 'compilation_products')->where('published', true)->limit(10);
|
|
}
|
|
|
|
public function dashboardProducts()
|
|
{
|
|
return $this->belongsToMany(Product::class, 'compilation_products');
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function category()
|
|
{
|
|
return $this->belongsTo(Category::class);
|
|
}
|
|
|
|
/**
|
|
* @param $query
|
|
* @return mixed
|
|
*/
|
|
public function scopePublished($query)
|
|
{
|
|
return $query->where('published', true);
|
|
}
|
|
|
|
/**
|
|
* @param $query
|
|
* @param $id
|
|
* @return mixed
|
|
*/
|
|
public function scopeCategory($query, $id)
|
|
{
|
|
return $query->where('category_id', $id);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $query
|
|
* @return mixed
|
|
*/
|
|
public function scopeNewProducts($query)
|
|
{
|
|
return $query->where('id', 1);
|
|
}
|
|
|
|
/**
|
|
* @param $query
|
|
* @return mixed
|
|
*/
|
|
public function scopePopularProducts($query)
|
|
{
|
|
return $query->where('id', 3);
|
|
}
|
|
|
|
/**
|
|
* @param $query
|
|
* @return mixed
|
|
*/
|
|
public function scopeLiderProducts($query)
|
|
{
|
|
return $query->where('id', 2);
|
|
}
|
|
}
|