12345678910111213141516 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>{{$page_title}} - {{$app_name}}</title>
- </head>
- <body>
- <h1>欢迎, {{$user.name}}</h1>
- <div class="info">
- <p>当前年份: {{$current_year}}</p>
- <p>版本号: {{$version}}</p>
- <p>请求处理时间: {{$request_time|number_format:4}}秒</p>
- <p>客户端IP: {{$request->getAttribute('client_ip')}}</p>
- </div>
- </body>
- </html>
|