@extends('layouts.admin') @section('content')
|
{{__('Comment')}}
|
{{__('Status')}}
|
|
|---|---|---|
|
{!! picture($listing->commentable->imageurl,config('attr.poster.size_x').','.config('attr.poster.size_y'),'absolute h-full w-full object-cover rounded-md',$listing->commentable->title) !!}
@if($listing->commentable_type == 'App\Models\Post')
{{$listing->commentable->title}}
@elseif($listing->commentable_type == 'App\Models\PostEpisode')
{{$listing->commentable->post->title}}
{{'S'.$listing->commentable->season_number.' / E'.$listing->commentable->episode_number}}
@endif
{{Str::limit($listing->commentable->overview,80)}}
|
@if($listing->status == 'publish')
{{__('Published')}}
@elseif($listing->status == 'draft')
{{__('Pending')}}
@endif
|
|