@extends('admin.layouts.master') @section('title', 'FAQs') @section('content')

{{ __('FAQs') }}

{{ __('FAQs') }}

@foreach ($faqs as $id => $faq) @endforeach
{{ __('#') }} {{ __('Question (English)') }} {{ __('Question (Arabic)') }} {{ __('Answer (English)') }} {{ __('Answer (Arabic)') }} {{ __('Actions') }}
{{ ++$id }} {{ json_decode($faq->question)->en }} {{ json_decode($faq->question)->ar }} {{ json_decode($faq->answer)->en }} {{ json_decode($faq->answer)->ar }}
@csrf @method('DELETE')
@endsection