1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use App\Services\LiquidRenderer;
- class VideoController extends Controller
- {
- protected $liquidRenderer;
- public function __construct(LiquidRenderer $liquidRenderer)
- {
- $this->liquidRenderer = $liquidRenderer;
- }
- /**
- * Display a listing of the videos.
- *
- * @return \Illuminate\Http\Response
- */
- public function index()
- {
- $videos = Video::paginate(10); // 每页显示10个视频
- return $this->liquidRenderer->render('videos.index', ['videos' => $videos]);
- }
- /**
- * Display the specified video.
- *
- * @param int $id
- * @return \Illuminate\Http\Response
- */
- public function show($id)
- {
- $video = Video::findOrFail($id);
- return $this->liquidRenderer->render('videos.show', ['video' => $video]);
- }
- }
|