@extends('layouts.admin') @section('title', 'Blog') @section('content')

Blog

@if (count($errors) > 0) @foreach ($errors->all() as $error) @endforeach @endif @foreach ($posts as $post) @endforeach
Featured Image Title Category Status Action
{{ $post->title }} {{ $post->title }} {{ $post->category->name }} {{ $post->status }}
@stop @section('js') @stop