38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', '')
|
|
|
|
@section('content')
|
|
<div class="n_ban" style="background:url({{ asset('assets/index/images/n_ban3.jpg') }}) no-repeat center;"></div>
|
|
<div class="neiye">
|
|
<div class="con">
|
|
<div class="ny_bt">
|
|
<h3>{{ $category->title }}</h3>
|
|
<span><i></i></span>
|
|
<p>News information</p>
|
|
</div>
|
|
<div class="dogntailb">
|
|
<ul>
|
|
@foreach($articles as $article)
|
|
<li @if(empty($article->cover)) class="displaynone" @endif>
|
|
<i>
|
|
<a href="{{ route('article.show', $article) }}"><img src="{{ \Storage::disk('public')->url($article->cover) }}" width="236" height="150" /></a>
|
|
</i>
|
|
<div class="dtzi">
|
|
<h3><a href="{{ route('article.show', $article) }}">{{ $article->title }}</a></h3><em>{{ $article->created_at->format('Y-m-d') }}</em>
|
|
<div class="clear"></div>
|
|
<p>
|
|
{{ $article->description }}
|
|
</p><span><a href="{{ route('article.show', $article) }}">了解更多</a></span>
|
|
</div>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
<div class="fenye">
|
|
{{ $articles->links() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|