@include('partials.head') @include('partials.header')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @forelse($posts as $post) @include('partials.post-card', ['post' => $post]) @empty
暂无文章
@endforelse @include('partials.pagination', ['paginator' => $posts])
@include('partials.sidebar')
{{-- #page --}} @include('partials.footer') @stack('theme:body_end')