@extends('admin.layout') @section('content')
{{ __('Features') }}
@if (!empty($langs)) @endif
@if (count($features) == 0)

{{ __('NO FEATURE FOUND') }}

@else
@foreach ($features as $key => $feature) @endforeach
# {{ __('Image') }} {{ __('Title') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ $feature->title }} {{ $feature->serial_number }} {{ __('Edit') }}
@csrf
@endif
@endsection