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

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

@foreach ($section_titles as $key => $section_title) @endforeach
{{ __('#') }} {{ __('Name') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$key }} {{ $section_title->title }} @if ($section_title->status == 'active') Active @else In Active @endif
@csrf
@endsection