Manage: {{ $category->name }}

@if(session('success')) @endif

Articles in {{ $category->name }}

Select articles and images to delete

@if($articles->count() > 0)
@csrf
@foreach($articles as $article) @endforeach
Article Images Created
{{ $article->title }}
{{ Str::limit($article->excerpt, 100) }}
@if($article->images->count() > 0)
@foreach($article->images as $image)
Article Image
@endforeach
@else No images @endif
{{ $article->created_at->format('M d, Y') }}
{{ $articles->links() }}
@else
No articles found in this category
Back to Categories
@endif
@endsection