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