@extends('layouts.admin.master') @section('content')

{{ $layout->menu->posts->title }}

@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 Tslt of Slug Title Viewed Shared Favorited Module
{{ \Helper::indexed($posts, $key) }} {{ $post->id }} {{ $post->content_parent }} {{ $post->translate_of }} {{ $post->slug }}
{!! $post->title !!}
{{ $post->viewed }} {{ $post->shared }} {{ $post->favorited }}
edit
{{ method_field('delete') }} {{ csrf_field() }}
@endsection