@extends('admin.layouts.master') @section('content') @section('bodyClass') @parent hold-transition skin-blue sidebar-mini @stop
{{lang('master_records')}} {{ucwords(str_replace('-',' ',$postType))}}

Total {{ $post_items->count() }} records

{{ lang('create_new') }}
@include('admin.common.filter_search') @include('admin.common.user_message')
@if($buttons['status'] ) @endif @if( !empty($post_items) && $post_items->count() >0 ) @php $inc = getPaginationSerial($post_items); @endphp @foreach($post_items as $item) @php $statusChangeUrl = apa('post/'.$postType.'/changestatus/'.$item->post_id.'/'.$item->post_status,true); @endphp @endif @endforeach @else @endif
# TitleCurrent StatusUpdate
{{ $inc++ }} {!! $item->post_title !!}
@if($buttons['status'] )
{!! getAdminStatusIcon($item->post_status,$statusChangeUrl) !!} {!! getAdminActionIcons($buttons,$postType,$item) !!}
No records found!
{!! $post_items->links('pagination::bootstrap-4') !!}
@stop