@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content') @if ($themeInfo->theme_version == 1)
{{ __('Event Features Section') }}
@includeIf('backend.partials.languages')
@csrf
@error('title')

{{ $message }}

@enderror
@error('text')

{{ $message }}

@enderror
@endif
{{ __('Features') }}
@includeIf('backend.partials.languages')
{{ __('Add Feature') }}
@if (count($features) == 0)

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

@else
@if ($themeInfo->theme_version == 3) @endif @foreach ($features as $feature) @if ($themeInfo->theme_version == 3) @endif @endforeach
{{ __('Icon') }}{{ __('Title') }} {{ __('Icon') }} {{ __('Text') }} {{ __('Serial Number') }} {{ __('Actions') }}
@if (is_null($feature->icon)) - @else @endif {{ strlen($feature->title) > 30 ? mb_substr($feature->title, 0, 30, 'UTF-8') . '...' : $feature->title }} {{ $feature->text }} {{ $feature->serial_number }}
@csrf
@endif
{{-- create modal --}} @include('backend.home-page.event-feature.create') {{-- edit modal --}} @include('backend.home-page.event-feature.edit') @endsection