12345678910111213141516171819202122232425 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/6/18
- * Time: 13:57
- */
- namespace App\Transformers\Topic;
- use App\Models\Topic;
- use Carbon\Carbon;
- use League\Fractal\TransformerAbstract;
- class TopicListTransformer extends TransformerAbstract
- {
- public function transform(Topic $topic)
- {
- return [
- 'id' => $topic['id'],
- 'name' => subtext($topic['name'], 5),
- 'img' => $topic['img'],
- 'follow_count' => getNumber($topic->follow->count() + config('customer.add_topic_follow_count')),
- ];
- }
- }
|