@extends('admin.layouts.default') @section('title') | Blog Posts @endsection @section('content')

Blog Posts

{{ Helper::gridPaginationCountString($posts) }}
@include('admin.pages.post._search') @foreach($posts as $post) @endforeach
ID Title Status Action
{{ $post['id'] }} {{ $post['title'] }} {{ $post['is_active'] == 1 ? 'Published' : 'Draft' }} Edit View
{{ Helper::gridPaginationCountString($posts) }}
@endsection