@extends('admin.layout') @php $selLang = \App\Language::where('code', request()->input('language'))->first(); @endphp @if(!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
Faqs
@if (!empty($langs)) @endif
Add Faq
@if (count($faqs) == 0)

NO FAQ FOUND

@else
@foreach ($faqs as $key => $faq) @endforeach
Question Serial Number Actions
{{convertUtf8(strlen($faq->question)) > 50 ? convertUtf8(substr($faq->question, 0, 50)) . '...' : convertUtf8($faq->question)}} {{$faq->serial_number}} Edit
@csrf
@endif
@endsection @section('scripts') @endsection