@extends('layouts.app') @push('pageTitle') {{ __('labels.industry_groups') }} @endpush @push('css') @endpush @section('content')
| # | {{ __('labels.name') }} | {{ __('labels.description') }} | {{ __('labels.stats') }} | {{ __('labels.created_at') }} | {{ __('labels.action') }} |
|---|---|---|---|---|---|
| {{ $index + 1 }} |
@if($item->logo_path)
{{ strtoupper(substr($item->name, 0, 2)) }}
@endif
{{ $item->name }}@if($item->creator) {{ $item->creator->name }} @endif |
@if($item->description)
{{ Str::limit($item->description, 30, '...') }}
@else
-
@endif
|
@if($item->deleted_at) {{ __('labels.deleted') }} @else @if($item->is_active) {{ __('labels.active') }} @else {{ __('labels.inactive') }} @endif @endif |
{{ $item->created_at?->format('d.m.Y') }}
{{ $item->created_at?->format('H:i') }}
{{ $item->created_at?->shortRelativeDiffForHumans() }}
|