2018-05-20 12:53:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class ProductTranslate extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'ab_product_translate';
|
2018-08-12 07:07:32 +00:00
|
|
|
|
|
|
|
public function getDescriptionFullAttribute($value)
|
|
|
|
{
|
|
|
|
return unserialize($value);
|
|
|
|
}
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|