@extends('backend.layouts.app') @section('title', __('Explore')) @section('content') Explore
@foreach ($explore as $value) @endforeach
# Featured Image Title Category Status Published at Action
{{ $loop->iteration }}
@if ($value->image) {{ $value->title }} @else {{ $value->title }} @endif
{{ Str::limit($value->title, 45) }} {{ $value->category->name }} @if ($value->isPublish()) Publish @else Draft @endif {{-- Draft --}} @if ($value->isPublish()) {{ Carbon\Carbon::parse($value->published_at)->format('d/m/Y') }} @else Null @endif
{{--
--}}
@method('delete') @csrf
@endsection @push('after-scripts') @endpush