2018-05-20 22:53:14 +10:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class ProductTranslate extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'ab_product_translate';
|
2018-08-12 17:07:32 +10:00
|
|
|
|
2022-04-02 18:06:34 +11:00
|
|
|
public $timestamps = FALSE;
|
|
|
|
|
2018-08-12 17:07:32 +10:00
|
|
|
public function getDescriptionFullAttribute($value)
|
|
|
|
{
|
|
|
|
return unserialize($value);
|
|
|
|
}
|
2018-05-20 22:53:14 +10:00
|
|
|
}
|