@extends('master') @section('content')
Posts
@foreach($blog as $k=>$val) @endforeach
S/N Image Title Category Views Status Created Updated Action
{{++$k}}. {{$val->title}} {{$val->category->categories}} {{$val->views}} @if($val->status==1) Published @else Pending @endif {{date("Y/m/d h:i:A", strtotime($val->created_at))}} {{date("Y/m/d h:i:A", strtotime($val->updated_at))}}
@stop