@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','FAQs List') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content') Category Management Dashboard Category List Add Category @csrf No ACTION CATEGORY STATUS @php $editPermission = \App\Helpers\Helper::checkPermission(['faq-edit']); $deletePermission = \App\Helpers\Helper::checkPermission(['faq-delete']); @endphp @for ($i = 0; $i < count($faq); $i++) {{$faq[$i]->id}} @if($editPermission) @endif @if($deletePermission) @endif {{$faq[$i]->category}} {{$faq[$i]->status}} @endfor @endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection