@extends('layouts.admin') @section('content')
@php $n = 1; @endphp @foreach($faqs as $faq)
Faq No: {{$n}}
@csrf @method('put')

Faq Title

Faq Details

@php $n = $n+1; @endphp @endforeach
@endsection