@extends('layouts.app') @push('pageTitle') {{ __('labels.posts') }} @endpush @section('content')
| # | {{ __('labels.title') }} | {{--{{ __('labels.description') }} | --}}{{ __('labels.status') }} | {{ __('labels.created_at') }} | {{ __('labels.action') }} |
|---|---|---|---|---|---|
| {{ $index + 1 }} |
@if($item->logo_path)
{{ strtoupper(substr($item->title, 0, 2)) }}
@endif
{{ $item->title }}@if($item->creator) {{ $item->author_name ?? (auth()->check() ? auth()->user()->name : null) }} @endif |
@if($item->is_active) {{ __('labels.active') }} @else {{ __('labels.inactive') }} @endif |
{{ $item->created_at?->format('d.m.Y') }}
{{ $item->created_at?->format('H:i') }}
{{ $item->created_at?->shortRelativeDiffForHumans() }}
|
||
| {{ __('labels.no_category_found') }} | |||||