@extends('layouts.app_layout') @section('content')

{{ $esttPost->name ?? '—' }}

{{ $esttPost->name_hi ?? '—' }}

{{ $esttPost->order ?? '—' }}


@if ($esttPost->is_approved == 1) Approved @elseif ($esttPost->is_approved == 2) Rejected @else Pending @endif

{!! $esttPost->is_published ? 'Published' : 'Not Published' !!}

{{ $esttPost->remarks ? $esttPost->remarks : 'No remarks available' }}

@can('approve estt post')
Approval Form
@csrf
@endcan @can('publish estt post')
Publish Form
@csrf
@endcan
@endsection @section('pages-scripts') @can('approve estt post') @endcan @can('publish estt post') @endcan @endsection