@extends('admin.layouts.master') @section('content')

{{ __('Introduction Sections') }}

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

@foreach ($introduction_sections as $key => $introduction_section) @endforeach
{{ __('#') }} {{ __('Title') }} {{ __('Type') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$key }} {!! json_decode($introduction_section->title)->en !!} {{ ucfirst(str_replace('_', ' ', $introduction_section->type)) }} @if ($introduction_section->status == 'active') Active @else InActive @endif
@csrf
@endsection