|
|
@ -24,17 +24,19 @@ class Product extends Model implements HasMedia
|
|
|
|
'qidz' => 'array'
|
|
|
|
'qidz' => 'array'
|
|
|
|
];
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
public function attachs(){
|
|
|
|
public function attachs()
|
|
|
|
return $this->morphMany(Attachment::class,'attachable');
|
|
|
|
{
|
|
|
|
|
|
|
|
return $this->morphMany(Attachment::class, 'attachable');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $guarded = [];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function getQzAttribute(){
|
|
|
|
public function getQzAttribute()
|
|
|
|
|
|
|
|
{
|
|
|
|
$result = [];
|
|
|
|
$result = [];
|
|
|
|
foreach ($this->quantities as $q) {
|
|
|
|
foreach ($this->quantities as $q) {
|
|
|
|
if ($q->count > 0){
|
|
|
|
if ($q->count > 0) {
|
|
|
|
$q->data = json_decode($q->data);
|
|
|
|
$q->data = json_decode($q->data);
|
|
|
|
$result[] = $q;
|
|
|
|
$result[] = $q;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -42,13 +44,15 @@ class Product extends Model implements HasMedia
|
|
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function getQidzAttribute(){
|
|
|
|
|
|
|
|
|
|
|
|
public function getQidzAttribute()
|
|
|
|
|
|
|
|
{
|
|
|
|
return $this->quantities()->pluck('id')->toArray();
|
|
|
|
return $this->quantities()->pluck('id')->toArray();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static $stock_status = ['IN_STOCK', 'OUT_STOCK', 'BACK_ORDER'];
|
|
|
|
public static $stock_status = ['IN_STOCK', 'OUT_STOCK', 'BACK_ORDER'];
|
|
|
|
|
|
|
|
|
|
|
|
public $translatable = ['name', 'excerpt', 'description','table'];
|
|
|
|
public $translatable = ['name', 'excerpt', 'description', 'table'];
|
|
|
|
|
|
|
|
|
|
|
|
public function registerMediaConversions(?Media $media = null): void
|
|
|
|
public function registerMediaConversions(?Media $media = null): void
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -73,7 +77,7 @@ class Product extends Model implements HasMedia
|
|
|
|
->nonQueued()
|
|
|
|
->nonQueued()
|
|
|
|
->format(getSetting('optimize'));
|
|
|
|
->format(getSetting('optimize'));
|
|
|
|
|
|
|
|
|
|
|
|
if (getSetting('watermark')){
|
|
|
|
if (getSetting('watermark')) {
|
|
|
|
$mc->watermark(public_path('upload/images/logo.png'),
|
|
|
|
$mc->watermark(public_path('upload/images/logo.png'),
|
|
|
|
AlignPosition::BottomLeft, 5, 5, Unit::Percent,
|
|
|
|
AlignPosition::BottomLeft, 5, 5, Unit::Percent,
|
|
|
|
config('app.media.watermark_size'), Unit::Percent,
|
|
|
|
config('app.media.watermark_size'), Unit::Percent,
|
|
|
@ -86,6 +90,12 @@ class Product extends Model implements HasMedia
|
|
|
|
config('app.media.watermark_size'), Unit::Percent, Fit::Contain,
|
|
|
|
config('app.media.watermark_size'), Unit::Percent, Fit::Contain,
|
|
|
|
config('app.media.watermark_opacity'));
|
|
|
|
config('app.media.watermark_opacity'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$this->addMediaConversion('product-optimized')
|
|
|
|
|
|
|
|
->optimize()
|
|
|
|
|
|
|
|
->sharpen(10)
|
|
|
|
|
|
|
|
->nonQueued()
|
|
|
|
|
|
|
|
->format('webp');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -151,35 +161,52 @@ class Product extends Model implements HasMedia
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function imgUrl(){
|
|
|
|
public function imgUrl()
|
|
|
|
|
|
|
|
{
|
|
|
|
if ($this->getMedia()->count() > 0) {
|
|
|
|
if ($this->getMedia()->count() > 0) {
|
|
|
|
return $this->getMedia()[$this->image_index]->getUrl('product-image');
|
|
|
|
return $this->getMedia()[$this->image_index]->getUrl('product-image');
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function orginalImageUrl(){
|
|
|
|
|
|
|
|
|
|
|
|
public function originalImageUrl()
|
|
|
|
|
|
|
|
{
|
|
|
|
if ($this->getMedia()->count() > 0) {
|
|
|
|
if ($this->getMedia()->count() > 0) {
|
|
|
|
return $this->getMedia()[$this->image_index]->getUrl();
|
|
|
|
return $this->getMedia()[$this->image_index]->getUrl();
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function imgUrl2(){
|
|
|
|
public function originalOptimizedImageUrl()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if ($this->getMedia()->count() > 0) {
|
|
|
|
|
|
|
|
return $this->getMedia()[$this->image_index]->getUrl('product-optimized');
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function imgUrl2()
|
|
|
|
|
|
|
|
{
|
|
|
|
if ($this->getMedia()->count() > 0 && isset($this->getMedia()[1])) {
|
|
|
|
if ($this->getMedia()->count() > 0 && isset($this->getMedia()[1])) {
|
|
|
|
return $this->getMedia()[1]->getUrl('product-image');
|
|
|
|
return $this->getMedia()[1]->getUrl('product-image');
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function thumbUrl(){
|
|
|
|
|
|
|
|
|
|
|
|
public function thumbUrl()
|
|
|
|
|
|
|
|
{
|
|
|
|
if ($this->getMedia()->count() > 0) {
|
|
|
|
if ($this->getMedia()->count() > 0) {
|
|
|
|
return $this->getMedia()[$this->image_index]->getUrl('product-thumb');
|
|
|
|
return $this->getMedia()[$this->image_index]->getUrl('product-thumb');
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
return asset('assets/upload/logo.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public function thumbUrl2(){
|
|
|
|
|
|
|
|
|
|
|
|
public function thumbUrl2()
|
|
|
|
|
|
|
|
{
|
|
|
|
if ($this->getMedia()->count() > 0 && isset($this->getMedia()[1])) {
|
|
|
|
if ($this->getMedia()->count() > 0 && isset($this->getMedia()[1])) {
|
|
|
|
return $this->getMedia()[1]->getUrl('product-thumb');
|
|
|
|
return $this->getMedia()[1]->getUrl('product-thumb');
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
@ -188,7 +215,59 @@ class Product extends Model implements HasMedia
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function webUrl(){
|
|
|
|
public function fullMeta($limit = 99)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
$metas = $this->getAllMeta()->toArray();
|
|
|
|
|
|
|
|
$result = [];
|
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
foreach ($metas as $key => $value) {
|
|
|
|
|
|
|
|
$result[$key] = [
|
|
|
|
|
|
|
|
'value' => $value,
|
|
|
|
|
|
|
|
'data' => Prop::where('name', $key)->first(),
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
switch ($result[$key]['data']['type']) {
|
|
|
|
|
|
|
|
case 'color':
|
|
|
|
|
|
|
|
$result[$key]['human_value'] = "<div style='background: $value' class='color-bullet'> </div>";
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'checkbox':
|
|
|
|
|
|
|
|
$result[$key]['human_value'] = $value ? '✅' : '❌';
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'multi':
|
|
|
|
|
|
|
|
case 'select':
|
|
|
|
|
|
|
|
case 'singlemulti':
|
|
|
|
|
|
|
|
if (!is_array($value)) {
|
|
|
|
|
|
|
|
$result[$key]['human_value'] = $result[$key]['data']->datas[$value];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$result[$key]['human_value'] = '';
|
|
|
|
|
|
|
|
foreach ($value as $k => $v) {
|
|
|
|
|
|
|
|
$result[$key]['human_value'] = $result[$key]['data']->datas[$v].', ';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$result[$key]['human_value'] = trim($result[$key]['human_value'],' ,');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
if (is_array($value)) {
|
|
|
|
|
|
|
|
$result[$key]['human_value'] = implode(', ', $value);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$result[$key]['human_value'] = $value;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$result[$key]['human_value'] .= ' ' . $result[$key]['data']['unit'];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
usort($result, function ($a, $b) {
|
|
|
|
|
|
|
|
return $a['data']['sort'] - $b['data']['sort'];
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$result = array_slice($result, 0, $limit);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function webUrl()
|
|
|
|
|
|
|
|
{
|
|
|
|
return '#';// WIP
|
|
|
|
return '#';// WIP
|
|
|
|
return route('');
|
|
|
|
return route('');
|
|
|
|
}
|
|
|
|
}
|
|
|
|