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

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

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

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


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

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

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

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