| Server IP : 14.225.204.176 / Your IP : 216.73.216.252 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/home-services/app/Models/ |
Upload File : |
<?php
/*
* File name: Category.php
* Last modified: 2021.04.18 at 11:48:14
* Author: SmarterVision - https://codecanyon.net/user/smartervision
* Copyright (c) 2021
*/
namespace App\Models;
use App\Traits\HasTranslations;
use Eloquent as Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Spatie\Image\Exceptions\InvalidManipulation;
use Spatie\Image\Manipulations;
use Spatie\MediaLibrary\HasMedia\HasMedia;
use Spatie\MediaLibrary\HasMedia\HasMediaTrait;
use Spatie\MediaLibrary\Models\Media;
/**
* Class Category
* @package App\Models
* @version January 19, 2021, 2:04 pm UTC
*
* @property Category parentCategory
* @property Category[] subCategories
* @property EService[] featuredEServices
* @property EService[] eServices
* @property string name
* @property string color
* @property string description
* @property integer order
* @property boolean featured
* @property boolean is_parent
* @property integer parent_id
*/
class Category extends Model implements HasMedia
{
use HasMediaTrait {
getFirstMediaUrl as protected getFirstMediaUrlTrait;
}
use HasTranslations;
/**
* Validation rules
*
* @var array
*/
public static $rules = [
'name' => 'required|max:127',
'color' => 'required|max:36',
'description' => 'nullable',
'order' => 'nullable|numeric|min:0',
'parent_id' => 'nullable|exists:categories,id'
];
public $translatable = [
'name',
'description'
];
public $table = 'categories';
public $fillable = [
'name',
'color',
'description',
'featured',
'order',
'parent_id'
];
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts = [
'name' => 'string',
'color' => 'string',
'description' => 'string',
'image' => 'string',
'featured' => 'boolean',
'order' => 'integer',
'parent_id' => 'integer'
];
/**
* New Attributes
*
* @var array
*/
protected $appends = [
'custom_fields',
'has_media'
];
protected $hidden = [
"created_at",
"updated_at",
];
/**
* @param Media|null $media
* @throws InvalidManipulation
*/
public function registerMediaConversions(Media $media = null)
{
$this->addMediaConversion('thumb')
->fit(Manipulations::FIT_CROP, 200, 200)
->sharpen(10);
$this->addMediaConversion('icon')
->fit(Manipulations::FIT_CROP, 100, 100)
->sharpen(10);
}
/**
* to generate media url in case of fallback will
* return the file type icon
* @param string $conversion
* @return string url
*/
public function getFirstMediaUrl($collectionName = 'default', $conversion = '')
{
$url = $this->getFirstMediaUrlTrait($collectionName);
$array = explode('.', $url);
$extension = strtolower(end($array));
if (in_array($extension, config('medialibrary.extensions_has_thumb'))) {
return asset($this->getFirstMediaUrlTrait($collectionName, $conversion));
} else {
return asset(config('medialibrary.icons_folder') . '/' . $extension . '.png');
}
}
public function getCustomFieldsAttribute()
{
$hasCustomField = in_array(static::class, setting('custom_field_models', []));
if (!$hasCustomField) {
return [];
}
$array = $this->customFieldsValues()
->join('custom_fields', 'custom_fields.id', '=', 'custom_field_values.custom_field_id')
->where('custom_fields.in_table', '=', true)
->get()->toArray();
return convertToAssoc($array, 'name');
}
public function customFieldsValues()
{
return $this->morphMany('App\Models\CustomFieldValue', 'customizable');
}
/**
* Add Media to api results
* @return bool
*/
public function getHasMediaAttribute()
{
return $this->hasMedia('image') ? true : false;
}
/**
* @return BelongsTo
**/
public function parentCategory()
{
return $this->belongsTo(Category::class, 'parent_id', 'id');
}
/**
* @return HasMany
**/
public function subCategories()
{
return $this->hasMany(Category::class, 'parent_id')->orderBy('order');
}
/**
* @return BelongsToMany
**/
public function eServices()
{
return $this->belongsToMany(EService::class, 'e_service_categories');
}
/**
* @return BelongsToMany
**/
public function featuredEServices()
{
return $this->belongsToMany(EService::class, 'e_service_categories')->where('e_services.featured', '=', true);
}
public function discountables()
{
return $this->morphMany('App\Models\Discountable', 'discountable');
}
}