You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/app/WmItemsCategory.php

26 lines
435 B

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class WmItemsCategory extends Model
{
public function WmItems()
{
return $this->hasMany('App\WmItem');
}
public function getDetailsAttribute($value)
{
return json_decode($value);
}
public function setDetailsAttribute($value)
{
$this->attributes['details'] = json_encode($value, JSON_UNESCAPED_UNICODE);
}
}