mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.1 KiB
PHP
99 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Spatie\Translatable\HasTranslations;
|
|
|
|
class Category extends Model
|
|
{
|
|
use HasFactory, HasTranslations, SoftDeletes;
|
|
|
|
public $translatable = ['name', 'subtitle', 'description'];
|
|
|
|
public function imgUrl()
|
|
{
|
|
if ($this->image == null) {
|
|
return asset('/assets/upload/logo.svg');
|
|
}
|
|
|
|
return \Storage::url('categories/optimized-' . $this->image);
|
|
}
|
|
|
|
public function imgOriginalUrl()
|
|
{
|
|
if ($this->image == null) {
|
|
return asset('/assets/upload/logo.svg');
|
|
}
|
|
|
|
return \Storage::url('categories/' . $this->image);
|
|
}
|
|
|
|
public function bgUrl()
|
|
{
|
|
if ($this->bg == null) {
|
|
return asset('/assets/upload/logo.svg');
|
|
}
|
|
|
|
return \Storage::url('categories/optimized-' . $this->bg);
|
|
}
|
|
|
|
public function bgOriginalUrl()
|
|
{
|
|
if ($this->bg == null) {
|
|
return asset('/assets/upload/logo.svg');
|
|
}
|
|
|
|
return \Storage::url('categories/' . $this->bg);
|
|
}
|
|
|
|
public function parent()
|
|
{
|
|
return $this->belongsTo(Category::class, 'parent_id');
|
|
}
|
|
|
|
public function children()
|
|
{
|
|
return $this->hasMany(Category::class, 'parent_id');
|
|
}
|
|
|
|
public function getRouteKeyName()
|
|
{
|
|
return 'slug';
|
|
}
|
|
|
|
public function props()
|
|
{
|
|
return $this->belongsToMany(Prop::class);
|
|
}
|
|
|
|
public function attachs()
|
|
{
|
|
return $this->morphMany(Attachment::class, 'attachable');
|
|
}
|
|
|
|
public function webUrl()
|
|
{
|
|
return fixUrlLang(route('client.category',$this->slug));
|
|
}
|
|
|
|
public function products()
|
|
{
|
|
return $this->belongsToMany(Product::class);
|
|
}
|
|
|
|
|
|
public function published($limit = 10, $order = 'id', $dir = 'DESC')
|
|
{
|
|
return $this->products()->where('status', 1)
|
|
->orderBy($order, $dir)->limit($limit)->get([
|
|
DB::raw('name as "title"'),
|
|
'slug'
|
|
]);
|
|
}
|
|
|
|
}
|