1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/6/17
- * Time: 18:10
- */
- namespace App\Transformers\Topic;
- use App\Models\Topic;
- use Carbon\Carbon;
- use League\Fractal\TransformerAbstract;
- class TopicDetailTransformer extends TransformerAbstract
- {
- public function __construct($uid)
- {
- $this->uid = $uid;
- }
- public function transform(Topic $topic)
- {
- return [
- 'id' => $topic['id'],
- ];
- }
- }
|