@extends('layouts.header') @section('title','View Blogs') @section('content')
View Blogs
@if ( Session::has('flash_message') ) @endif @if(count($blogs)>0)
@foreach ($blogs as $item) @endforeach
Category Name Image Slug Status Actions
@foreach ($item->categories as $item2) {{$item2->name}} @endforeach {{$item->name}} {{$item->slug}} @if($item->status) Active @else Inactive @endif
{{$blogs->links()}} @else
No Blogs Found.
@endif
@endsection