@php $title = translate('Do you want to move to Trash'); $text = translate('If You trash, if have hero, all data will be trash.'); @endphp {{ translate('Manage Page') }}
@if ($heroes->count() > 0)
@foreach ($heroes as $hero) @endforeach
{{ translate('Title') }} {{ translate('Theme Name') }} {{ translate('Status') }} {{ translate('Action') }}
{{ $hero->title }} {{ $hero?->theme?->name ?? '' }} @php $class = $hero->status ? 'badge-primary-outline' : 'badge-danger-outline'; $status = $hero->status ? 'Active' : 'Inactive'; @endphp
{{ translate($status) }}
@if ($hero->trashed()) @php $title = translate('Are you sure you want to delete this permanently'); $text = translate( 'If You delete it, if have hero, all data will be deleted permanently', ); @endphp @else @endif
{{ $heroes->links('portal::admin.pagination.paginate') }} @else @endif