classify admin
This commit is contained in:
39
app/Models/ItemCustomFieldValue.php
Normal file
39
app/Models/ItemCustomFieldValue.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use JsonException;
|
||||
|
||||
/**
|
||||
* @method static create(array $itemCustomFieldValues)
|
||||
* @method static insert(array $itemCustomFieldValues)
|
||||
*/
|
||||
class ItemCustomFieldValue extends Model {
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'item_id',
|
||||
'custom_field_id',
|
||||
'value',
|
||||
'language_id'
|
||||
];
|
||||
|
||||
public function custom_field() {
|
||||
return $this->belongsTo(CustomField::class);
|
||||
}
|
||||
|
||||
public function item()
|
||||
{
|
||||
return $this->belongsTo(Item::class, 'item_id');
|
||||
}
|
||||
|
||||
public function getValueAttribute($value) {
|
||||
try {
|
||||
return array_values(json_decode($value, true, 512, JSON_THROW_ON_ERROR));
|
||||
} catch (JsonException) {
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user