@extends('layouts.admin.app')
@section('title','FAQs')
@section('content')
# |
OrderId |
Title
{{-- | content | --}}
Status |
Action |
@if(isset($faqs))
@foreach($faqs as $faq)
{{ $loop->iteration }} |
{{ $faq->order_number }} |
{{ $faq->title }} |
{{-- {{ $faq->content }} | --}}
{{ ucwords($faq->status) }}
|
Edit
Delete
|
@endforeach
@endif
@endsection
@section('js')
@endsection