You've already forked lubo_comment_query
							
							
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <html lang="zh">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport"
 | |
|           content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
 | |
|     <meta http-equiv="X-UA-Compatible" content="ie=edge">
 | |
|     <title>录播节目单查询</title>
 | |
| </head>
 | |
| <body>
 | |
|     @include("header")
 | |
|     <form action="">
 | |
|         <label for="keyword">查找节目单关键词,空格隔开查找多个关键词</label>
 | |
|         <input type="text" name="keyword" id="keyword" value="{{$keyword}}">
 | |
|         <input type="submit">
 | |
|     </form>
 | |
|     <table border>
 | |
|         <thead>
 | |
|         <tr>
 | |
|             <td>视频标题</td>
 | |
|             <td>置顶评论</td>
 | |
|             <td>本期课代表</td>
 | |
|             <td>链接</td>
 | |
|         </tr>
 | |
|         </thead>
 | |
|         <tbody>
 | |
|         @foreach($comments as $comment)
 | |
|         <tr>
 | |
|             <td>{{$comment->video->title}}</td>
 | |
|             <td style="white-space: pre-wrap;">{{$comment->content}}</td>
 | |
|             <td><a href="https://space.bilibili.com/{{$comment->mid}}">课代表B站主页</a></td>
 | |
|             <td><a href="https://www.bilibili.com/video/{{$comment->video->bvid}}">{{$comment->video->bvid}}</a></td>
 | |
|         </tr>
 | |
|         @endforeach
 | |
|         </tbody>
 | |
|     </table>
 | |
| @include("footer")
 | |
| </body>
 | |
| </html>
 |