@section('style') @endsection @extends('layouts.backend.app') @section('content')

{{ __('Posts List') }}

@csrf
@foreach($posts as $post) @endforeach
{{ __('Title') }} {{ __('Author') }} {{ __('Views') }} {{ __('Lang') }} {{ __('Status') }} {{ __('Last Modified') }}
{{ $post->title }} {{ $post->user->name }} {{ $post->count }} {{ $post->lang }} @if($post->status==1) Published @elseif($post->status==2) {{ __('Draft') }} @else {{ __('Trash') }} @endif {{ __('Last Modified') }}
{{ $post->updated_at->diffForHumans() }}
{{ __('Title') }} {{ __('Author') }} {{ __('Views') }} {{ __('Lang') }} {{ __('Status') }} {{ __('Last Modified') }}
{{ $posts->links() }}
@endsection @section('script') @endsection