- <?php
- namespace App\Http\Controllers\Channel\OfficialAccount\Transformers;
- class CustomMsgControllerTransformer
- {
- public function transform($customMsg){
- return [
-
-
- 'customer_img_url' => isset($customMsg->customer_img_url) ? $customMsg->customer_img_url : "",
- ];
- }
- }
|