@extends('admin.layout.master') @section('title') All FAQ @endsection @section('css') @endsection @section('content')

All FAQ List

@if(session()->get('error')) @elseif(session()->get('success')) @endif
@foreach($faq as $key =>$result) @endforeach
# Title Description Actions
{{ $faq->firstItem() + $key }} {{ \Illuminate\Support\Str::limit($result->faq_title,20, $end='...') }} {{ \Illuminate\Support\Str::limit($result->faq_desc,50, $end='...') }}
{{ $faq->onEachSide(3)->links('vendor.pagination.custom') }}
@endsection @section('js') @endsection