@extends('admin.layouts.master') @section('title', ucwords(str_replace('-', ' ', $slug)) . ' | Hero Sections') @section('content') @include('admin.page.top-nav')
@include('admin.page.side-nav')
{{-- content --}}

{{ __('Hero Section List') }}

@foreach ($hero_sections as $key => $hero_section) @endforeach
{{ __('#') }} {{ __('Title') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$key }} {!! $hero_section->getTranslation('title', 'en') !!} @if ($hero_section->status == 'active') Active @else InActive @endif
@csrf
@endsection