@extends('admin.layouts.admin') @section('content')
@forelse ($features as $feature) @empty @endforelse
{{ __('#') }} {{ __('Title') }} {{ __('Description') }} {{ __('Language') }} {{ __('Created At') }} {{ __('Actions') }}
{{ $feature->id }} {!! $feature->icon !!} {{ $feature->title }} {{ Str::limit($feature->content, 40) }} {{ $feature->lang }} {{ toDate($feature->created_at) }}
@endsection