@extends('admin.layouts.master')
@section('content')
@section('bodyClass')
@parent
hold-transition skin-blue sidebar-mini
@stop
{{ lang('master_records') }}
{{ ucwords(str_replace('-', ' ', $postType)) }}
Manage {{ ucwords(str_replace('-', ' ', $postType)) }}
Total {{ $post_items->count() }} records
@if ($buttons['add'])
@endif
@include('admin.common.filter_search')
@include('admin.common.user_message')
@foreach ($post_items as $item)
@php
if (!empty($item->getMeta('media_youtube'))) {
$copyURl = $item->getMeta('media_youtube');
} else {
$copyURl = PP($item->getMeta('media_doc'));
}
@endphp
-
@endforeach
{!! $post_items->appends(request()->all())->links('pagination::bootstrap-4') !!}
@stop
@section('scripts')
@parent
@stop