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

{{ __('Introduction Sections List') }}

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