From f54cb1e980483110a1bb3a6fe850b2f3fed8ab91 Mon Sep 17 00:00:00 2001 From: xuanchen <122383162@qq.com> Date: Mon, 29 Nov 2021 11:05:19 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E4=B8=80=E4=B8=AA=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/category/video_lists.blade.php | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 resources/views/category/video_lists.blade.php diff --git a/resources/views/category/video_lists.blade.php b/resources/views/category/video_lists.blade.php new file mode 100644 index 0000000..b17b24c --- /dev/null +++ b/resources/views/category/video_lists.blade.php @@ -0,0 +1,60 @@ +@extends('layouts.app') + +@section('title', $parent->title) + + +@section('css') + +@endsection + +@section('content') + + @include('category.navigation') + + +
+
+ + @include('category.left') + + @if ($articles->isNotEmpty()) +
+
+
+ @foreach ($articles as $article) +
+
+
+ + +
+
+

{{ $article->title }}

+
+
+
+ @endforeach +
+
+
+ @if ($articles->isNotEmpty()) + {{ $articles->links('layouts.pagination') }} + @endif +
+
+ @else +
+
+ + 抱歉,暂无内容 +
+
+ @endif +
+
+@endsection +@push('script') + +@endpush \ No newline at end of file