|
@@ -1,14 +1,16 @@
|
|
|
<?php
|
|
|
|
|
|
namespace App\Http\Controllers\QuickApp\Book\Transformers;
|
|
|
+
|
|
|
use Hashids;
|
|
|
+
|
|
|
class ChapterListTransformer
|
|
|
{
|
|
|
|
|
|
- public function transform($chapter){
|
|
|
+ public function transform($chapter)
|
|
|
+ {
|
|
|
return [
|
|
|
'bid' => Hashids::encode($chapter->bid),
|
|
|
- //'bid_no_hash' => ($chapter->bid),
|
|
|
'chapter_id' => $chapter->id,
|
|
|
'chapter_name' => $chapter->name,
|
|
|
'chapter_sequence' => $chapter->sequence,
|
|
@@ -17,7 +19,7 @@ class ChapterListTransformer
|
|
|
'prev_cid' => $chapter->prev_cid,
|
|
|
'next_cid' => $chapter->next_cid,
|
|
|
'recent_update_at' => $chapter->recent_update_at,
|
|
|
- 'is_need_subscirbe' =>isset($chapter->is_need_subscirb)?$chapter->is_need_subscirb:'',
|
|
|
+ 'is_need_subscirbe' => isset($chapter->is_need_subscirb) ? $chapter->is_need_subscirb : '',
|
|
|
];
|
|
|
}
|
|
|
-}
|
|
|
+}
|