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

{{ __('Features') }}

{{ __('Features List') }}

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