{{ __('Jokes Admin') }}

@csrf

Joke Details

{{ __('Title') }}

{{ $joke->title }}

{{ __('Content') }}

{{ $joke->content ?? "-" }}

{{ __('Total Categories') }}

{{ $categories->count() ?? "-" }}

{{ __(' Edit') }} {{ __(' All Jokes') }} {{ __('Delete') }}

{{ __('Categories the Joke belongs to') }}

@foreach($categories as $category)

{{ $category->title }}

{{ Str::limit(strip_tags(html_entity_decode($category->description)), 40) }}

@endforeach
{{ __('Votes') }}