@extends('admin.layout') @php $selLang = \App\Models\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')}}
{{strlen($faq->question) > 50 ? mb_substr($faq->question, 0, 50, 'UTF-8') . '...' : $faq->question}} {{$faq->serial_number}} {{__('Edit')}}
@csrf
@endif
@endsection