@extends('admin.layout.main') @section('title', 'Blogs | ') @section('content')
All Blogs
@if (Session::has('msg'))

{{ Session::get('msg') }}

@endif Add Blog @php $startIndex = ($blogs->currentPage() - 1) * $blogs->perPage() + 1; @endphp @foreach ($blogs as $blog) @endforeach
# Title Image Topic Reading Time Action
{{ $startIndex++ }} {{ $blog->title }} Blog Image {{ $blog->topic }} {{ $blog->reding_time }} mins
@csrf @method('DELETE')
{{ $blogs->links() }}
@endsection