@extends('layouts.simple.master')
@section('title', 'FAQs List')
@section('breadcrumb-title')
FAQs
@endsection
@section('style')
@endsection
@section('breadcrumb-items')
FAQs
@endsection
@section('content')
Id |
Category |
Actions |
@if(count($faqs) > 0)
@foreach($faqs as $index=>$faq)
{{++$index;}} |
{{$faq->title}} |
|
@endforeach
@endif
@endsection
@section('script')
@endsection