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

{{ __('Features List') }}

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