{{ $content->title }}
{{ $content->release_date?->format('Y-m-d') }} {{ $content->release_time?->format('h:i A') }} {!! $content->status_name !!}
{{ $content->product?->client?->name }}
{{ $content->product?->name }}

{{ $content->category?->title }}

@if ($content->status != 13)
@csrf
{{ html()->hidden('id', $content->id) }}
{{ html()->label('Status')->for('status')->class('form-label') }} {{ html()->select('status', config('constants.content_status_options'), 12)->id('status')->class('form-control')->required(true) }}
{{ html()->label('Remarks')->for('approval_remarks')->class('form-label') }} {{ html()->textarea('remarks')->id('remarks')->class('form-control')->attributes(['rows' => 3])->required(true) }}
@endif