@extends('admin.layouts.app') @section('title', 'FAQ') @section('breadcrumb')
  • Pages
  • FAQ
  • @endsection @section('heading', 'FAQ') @section('subheading', 'Manage frequently asked questions.') @section('content') {{-- Add Form --}}

    Add FAQ

    @csrf
    {{-- Table --}}
    @foreach ([ ['id' => 1, 'question' => 'What documents do I need to buy a property in India?', 'category' => 'Property', 'position' => 1, 'views' => 1250, 'status' => 1], ['id' => 2, 'question' => 'How does RERA protect homebuyers?', 'category' => 'Legal', 'position' => 2, 'views' => 980, 'status' => 1], ['id' => 3, 'question' => 'What is stamp duty and who pays it?', 'category' => 'Legal', 'position' => 3, 'views' => 856, 'status' => 1], ['id' => 4, 'question' => 'Can NRIs buy property in India?', 'category' => 'General', 'position' => 4, 'views' => 720, 'status' => 1], ['id' => 5, 'question' => 'How do I verify if a property is RERA registered?', 'category' => 'Property', 'position' => 5, 'views' => 645, 'status' => 1], ['id' => 6, 'question' => 'What are the payment options for property booking?', 'category' => 'Payment', 'position' => 6, 'views' => 512, 'status' => 1], ['id' => 7, 'question' => 'How do I become a registered agent?', 'category' => 'Agent', 'position' => 7, 'views' => 398, 'status' => 1], ['id' => 8, 'question' => 'How do I schedule a property visit?', 'category' => 'Technical', 'position' => 8, 'views' => 285, 'status' => 1], ] as $faq) @endforeach
    ID Question Category Position Views Status Actions
    {{ $faq['id'] }} {{ Str::limit($faq['question'], 45) }} {{ $faq['category'] }}
    {{ $faq['position'] }}
    {{ number_format($faq['views']) }} {{ $faq['status'] ? 'Active' : 'Inactive' }}
    @endsection