27 lines
689 B
PHP
27 lines
689 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', $patent->title)
|
|
|
|
|
|
@section('content')
|
|
<!-- content -->
|
|
<div class="container details">
|
|
<!-- 文章标题 -->
|
|
<h3 class="details-title">{{ $patent->title }}</h3>
|
|
<p class="details-time">{{ $patent->created_at }}</p>
|
|
<!-- 文章详情 -->
|
|
<div class="details-content">
|
|
<img src="{{ $patent->cover_path }}">
|
|
|
|
{!! $patent->content !!}
|
|
</div>
|
|
<!-- 下一篇 -->
|
|
@if ($next)
|
|
<div class="details-writings">
|
|
|
|
<a href="{{ $next->link }}">下一篇:{{ $next->title }}</a>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
@endsection
|