SupplierLogTransformer.php
379 Bytes
<?php
namespace App\Http\Transformers;
class SupplierLogTransformer
{
public function transformList($list)
{
foreach ($list as &$item) {
$item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
$item['type'] = array_get(config('fixed.SupplierLogType'), $item['type']);
}
unset($item);
return $list;
}
}