@extends('layouts.adminapp') @section('title') {{__('lng.Post')}} @endsection @section('content')
{{__('lng.PostTable')}}
{{__('lng.CreateNew')}}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach($Posts as $Post) @endforeach
{{__('lng.SiNo')}} {{__('lng.Head')}} {{__('lng.Subhead')}} {{__('lng.Date')}} {{__('lng.Narration')}} {{__('lng.Action')}}
{{++$si}} {{$Post->head}} {{$Post->subhead}} {{$Post->date}} {{$Post->narration}}
@csrf @method('delete')

{{$Posts->count()}} {{__('lng.Items')}}

@endif
@endsection