common = new Common; $this->count = 50; } public function index ($page=0) { $res = [ 'page' => 'local', 'style' => 'videoslist', 'paginate' => $page, 'pagetotal' => 500, 'userinfo' => $this->common->user, ]; $res['video'] = $this->getVideo(($page*$this->count), $this->count); return view('pages.peertube.videos.local', ['res' => $res]); } function getVideo ($start, $count) { $get = $this->ptapi_get('/api/v1/videos?start='.$start.'&count='.$count.'&sort=-publishedAt&skipCount=true&isLocal=true&nsfw=both'); return $this->vidlist($get); } }