@extends('admin.tw.layout')
@section('title','FAQs')
@section('content')
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| Title |
Category |
Created |
Actions |
@forelse(($FAQ ?? []) as $f)
|
{{ $f->title }}
|
{{ $f->category ?? 'General' }}
|
{{ $f->created_at }} |
|
@empty
| No FAQs found. |
@endforelse
@endsection