@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title'=> __('Features'), 'buttons'=>[ [ 'name'=>' '.__('Create feature'), 'url'=>route('admin.features.create'), ] ] ]) @endsection @section('content')

{{ __('Our Features') }}

@foreach($posts ?? [] as $post) @endforeach
{{ __('Title') }} {{ __('Description') }} {{ __('Language') }} {{ __('Action') }}
{{ Str::limit($post->title,30) }} {{ Str::limit($post->excerpt->value ?? '',50) }} {{ $post->lang }}
@endsection @push('js') @endpush