@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')}} {{__('Text')}} {{__('Serial Number')}} {{__('Actions')}}
{{$loop->iteration}} {{$feature->title}} {{$feature->text}} {{$feature->serial_number}}
@csrf
@endif
@endsection