@extends('backend.layouts.grid') @section('title', $active . ' ' . __('Features')) @section('link', route('admin.features.create')) @section('language', true) @section('content')
@foreach ($features as $feature) @endforeach
{{ __('#') }} {{ __('Language') }} {{ __('Details') }} {{ __('Published date') }}
{{ $feature->id }} {{ $feature->lang }}
{{ shortertext($feature->title, 40) }}

{{ shortertext($feature->content, 50) }}

{{ vDate($feature->created_at) }}
@endsection