@extends('layouts.app') @push('pageTitle') {{ __('labels.case_studies') }} @endpush @section('content')
| # | {{ __('labels.title') }} | {{--{{ __('labels.introduction') }} | --}}{{ __('labels.status') }} | {{ __('labels.order') }} | {{ __('labels.created_at') }} | {{ __('labels.action') }} |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->title }} | {{--{{ Str::limit($item->introduction, 30) }} | --}}@if ($item->is_active) {{ __('labels.active') }} @else {{ __('labels.inactive') }} @endif | @if ($item->sort_order) {{ $item->sort_order }} @endif |
{{ $item->created_at?->format('d.m.Y') }}
{{ $item->created_at?->format('H:i') }}
{{ $item->created_at?->shortRelativeDiffForHumans() }}
|
|
| {{ __('datatable.no_matching_records_found') }} | ||||||