@extends('backoffice.layouts.app') @section('content')

All Faqs

{{--
--}} Add New
@if (count($faqs)) @foreach ($faqs as $index => $item) @endforeach @endif
# Title (EN) Title (AR) MODIFY Date Status Action
{{ $index + 1 }} {{ $item->title_en ?? '' }} {{ $item->title_ar ?? '' }} {{ \Carbon\Carbon::parse($item->created_at)->format('d-m-Y') ?? '' }} @if ($item->status == 1) Active @else Inactive @endif
{{-- --}}
@endsection