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.
40 lines
912 B
PHP
40 lines
912 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Spatie\Translatable\HasTranslations;
|
|
|
|
class Prop extends Model
|
|
{
|
|
|
|
use HasFactory,HasTranslations,SoftDeletes;
|
|
public $translatable = ['label','unit'];
|
|
|
|
protected $casts = [
|
|
'dataz',
|
|
'optionz'
|
|
];
|
|
|
|
public static $prop_types = ['text','number','checkbox','color','select','multi','singlemulti'];
|
|
|
|
public function categories()
|
|
{
|
|
return $this->belongsToMany(Category::class);
|
|
}
|
|
|
|
public function getDatazAttribute(){
|
|
$result = [];
|
|
foreach (json_decode($this->options) as $item) {
|
|
$result[$item->title] = $item->value;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
public function getOptionzAttribute(){
|
|
return json_decode($this->options);
|
|
}
|
|
}
|