<?php


namespace App\Http\Transformers;


class ReceiptTransformer
{
    public function transformList($list)
    {
        foreach ($list as &$item) {
            $item['receipt_type'] = $item['receipt_type'] == 1 ? '国内' : '港澳台和国外';
        }
        unset($item);

        return $list;
    }

}