@extends('front-end.layout') @section('title') {{ get_label('features', 'Features') }} @endsection @section('content')
{{ get_label('features', 'Features') }}

{{ get_label('taskify_features_heading', 'Every Feature Your Team Needs To Complete Work Faster') }}

{{ get_label('taskify_features_subheading', 'Streamline your team\'s workflow and boost productivity with our comprehensive set of features.') }}

@if (!empty($frontend_general_settings['features'])) @foreach ($frontend_general_settings['features'] as $index => $feature) @if ($index % 4 == 0 && $index > 0)
@endif
@if (!empty($feature['icon'])) {{ $feature['title'] }} @else {{ $feature['title'] }} @endif

{{ $feature['title'] }}

{{ $feature['description'] }}

@if ($index == count($frontend_general_settings['features']) - 1)
@endif @endforeach @else

No features have been defined yet.

@endif
@endsection