@extends('layouts.admin') @section('content')
{{ __('Manage Section') }}
{{ __('Add New Feature') }}
{{-- সাকসেস মেসেজ --}} @if(Session::has('success')) @endif
@forelse($features as $feature) @empty @endforelse
{{ __('Image') }} {{ __('Icon') }} {{ __('Title') }} {{ __('Description') }} {{ __('Options') }}
@if($feature->image) {{-- public ফোল্ডার না থাকায় url() ব্যবহার করা হয়েছে --}} Feature Image @else No Image @endif
{{ $feature->title }} {{ Str::limit($feature->description, 80) }}
{{-- এডিট বাটন --}} {{-- ডিলিট বাটন --}}
{{-- Delete Modal --}}
{{ __('No Data Found') }}
@endsection