Add (v1)
This commit is contained in:
@@ -29,9 +29,9 @@
|
||||
<th>
|
||||
Image
|
||||
</th>
|
||||
<th>Status</th>
|
||||
<th>Title</th>
|
||||
<th>{{ __('Created at') }}</th>
|
||||
<th>{{ __('Updated in') }}</th>
|
||||
<th>Datetime</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -42,12 +42,33 @@
|
||||
<td><img width="80" height="60" src="{{ $post->featured_image }}"
|
||||
class="img-fluid rounded-2" alt=""></td>
|
||||
<td>
|
||||
@if($post->status === 'publish')
|
||||
<span class="badge bg-success">{{ ucfirst($post->status) }}</span>
|
||||
@elseif($post->status === 'future')
|
||||
<span class="badge bg-primary">{{ ucfirst($post->status) }}</span>
|
||||
@elseif($post->status === 'draft')
|
||||
<span class="badge bg-secondary">{{ ucfirst($post->status) }}</span>
|
||||
@elseif($post->status === 'private')
|
||||
<span class="badge bg-info">{{ ucfirst($post->status) }}</span>
|
||||
@elseif ($post->status == 'trash')
|
||||
<span class="badge bg-danger">{{ ucfirst($post->status) }}</span>
|
||||
@else
|
||||
<span class="badge bg-secondary">{{ ucfirst($post->status) }}</span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if(!is_empty($post->post_category?->category?->country_locale_slug) && $post->status == 'publish')
|
||||
<a
|
||||
href="{{ route('home.country.post', ['country' => $post->post_category->category->country_locale_slug, 'post_slug' => $post->slug]) }}">{{ $post->title }}</a>
|
||||
href="{{ route('home.country.post', ['country' => $post->post_category?->category?->country_locale_slug, 'post_slug' => $post->slug]) }}">{{ $post->title }}</a>
|
||||
@else
|
||||
{{ $post->title }}
|
||||
@endif
|
||||
|
||||
</td>
|
||||
<td>{{ $post->created_at }}</td>
|
||||
<td>{{ $post->updated_at->diffForhumans() }}</td>
|
||||
<td>
|
||||
Created at {{ $post->created_at->timezone(session()->get('timezone'))->isoFormat('Do MMMM YYYY, h:mm A') }}<br>
|
||||
Updated {{ $post->updated_at->diffForhumans() }}
|
||||
</td>
|
||||
<td>
|
||||
<div><a href="{{ route('posts.manage.edit', ['post_id' => $post->id]) }}"
|
||||
class="btn">Edit</a></div>
|
||||
|
||||
Reference in New Issue
Block a user