@extends('layouts.backend') @section('title') @lang('backend.posts_views.page_name') @endsection @section('modals') @include('backend.partials.modals') @endsection @section('content')

@lang('backend.posts_views.page_name')

@lang('backend.posts_views.list')

@include('backend.partials.deleted') @include('backend.partials.errors') @include('backend.partials.message') @foreach($posts as $post) @endforeach
@lang('backend.tables.title') @lang('backend.tables.author') @lang('backend.tables.date') @lang('backend.tables.actions') @lang('backend.tables.status')
{{ $post->title }} {{$post->getAuthorName()}} {{ $post->created_at }} active)?'checked':''}} data-route="{{route('posts.save_status', $post->id)}}">
{!! $posts->links() !!}
@endsection