@extends('admin.master') @section('content')
Manage FAQ section title, subtitle and status
| # | Title | Subtitle | Status | Action |
|---|---|---|---|---|
| {{ $sections->firstItem() + $key }} | {{ $section->title }} | {{ $section->subtitle }} | @if($section->is_active) Active @else Inactive @endif | |
| No section found | ||||
Manage question, answer, order and status
| # | Section | Question | Answer | Order | Status | Action |
|---|---|---|---|---|---|---|
| {{ $items->firstItem() + $key }} | {{ $item->section->title ?? 'N/A' }} | {{ $item->question }} | {{ \Illuminate\Support\Str::limit($item->answer, 80) }} | {{ $item->display_order }} | @if($item->is_active) Active @else Inactive @endif | |
| No item found | ||||||