@extends('backend.layouts.grid') @section('title', $active . ' ' . __('FAQ')) @section('link', route('admin.faq.create')) @section('language', true) @section('content')
@foreach ($faqs as $faq) @endforeach
{{ __('#') }} {{ __('Language') }} {{ __('Title') }} {{ __('Published date') }}
{{ $faq->id }} {{ $faq->lang }} {{ shortertext($faq->title, 40) }} {{ vDate($faq->created_at) }}
@endsection