35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: xing
|
||
|
* Date: 2018/6/10
|
||
|
* Time: 17:46
|
||
|
*/
|
||
|
|
||
|
namespace App\Transformers;
|
||
|
|
||
|
|
||
|
use App\Models\Topic;
|
||
|
use Carbon\Carbon;
|
||
|
use League\Fractal\TransformerAbstract;
|
||
|
|
||
|
class TopicTransformer extends TransformerAbstract
|
||
|
{
|
||
|
public function transform(Topic $topic)
|
||
|
{
|
||
|
return [
|
||
|
'id' => $topic->id,
|
||
|
'title' => $topic->title,
|
||
|
'body' => $topic->body,
|
||
|
'user_id' => (int)$topic->user_id,
|
||
|
'category_id' => (int)$topic->category_id,
|
||
|
'reply_count' => (int)$topic->reply_count,
|
||
|
'view_count' => (int)$topic->view_count,
|
||
|
'last_reply_user_id' => (int)$topic->last_reply_user_id,
|
||
|
'excerpt' => $topic->excerpt,
|
||
|
'slug' => $topic->slug,
|
||
|
'created_at' => $topic->created_at instanceof Carbon ? $topic->created_at->toDateTimeString() : $topic->created_at,
|
||
|
'updated_at' => $topic->updated_at instanceof Carbon ? $topic->updated_at->toDateTimeString() : $topic->updated_at,
|
||
|
];
|
||
|
}
|
||
|
}
|