@extends('layouts.app') @push('pageTitle') {{ __('labels.products') }} @endpush @push('css') @endpush @section('content')
| # | {{ __('labels.title') }} | {{--{{ __('labels.introduction') }} | --}}{{ __('labels.status') }} | {{ __('labels.created_at') }} | {{ __('labels.action') }} |
|---|---|---|---|---|---|
| {{ $index + 1 }} |
@if ($item->logo_path)
{{ strtoupper(substr($item->title, 0, 2)) }}
@endif
{{ $item->title }} |
@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_news_found') }} | |||||