@extends('backend.admin-master') @section('site-title') {{__('Key Features')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('Key Features Items')}}

@php $b=0; @endphp @foreach($all_key_features as $key => $key_feature)
@foreach($key_feature as $data) @endforeach
{{__('ID')}} {{__('Icon')}} {{__('Title')}} {{__('Action')}}
{{$data->id}} {{$data->title}}
@php $b++; @endphp @endforeach

{{__('New Key Features')}}

@csrf
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection