@extends('admin.layouts.app') @section('content')

@isset($page_title) {{$page_title}} @endisset

@forelse ($blogs as $key=>$blog) @empty @endforelse
# Image Title Short Descripiton Is Active Action
{{($key+1) + ($blogs->currentPage() - 1)*$blogs->perPage()}} {{$blog->title}} {{$blog->title}} {{$blog->short_description}} @if($blog->is_active == '1') Active @else Inactive @endif

Nothing Found

Showing {{($blogs->currentpage()-1)*$blogs->perpage()+1}} to {{(($blogs->currentpage()-1)*$blogs->perpage())+$blogs->count()}} of {{$blogs->total()}} Blogs

{!! $blogs->links() !!}
@endsection