@extends('layouts.admin.master') @section('content')
@if(Session::has('deleted'))
{!! Helper::alert('success', Session::get('deleted'), 'block font-15') !!}
@endif
@if(count($posts) ==0) {!! Helper::empty_table(10) !!} @endif @foreach($posts as $key => $post) @endforeach
# Id Parent Category Slug Title Viewed Status Module
{{ Helper::indexed($posts, $key) }} {{ $post->id }} {{ $post->content_parent }}
@foreach($post->relationships as $r_key => $r_value)
{{ $r_value->term->title }}
@endforeach
{{ $post->slug }}
{!! $post->title !!}
{{ $post->viewed }} {{ $post->content_status }}
view edit
{{ method_field('delete') }} {{ csrf_field() }}
@endsection