@extends('layouts.app') @section('titlePage', 'Manage FAQ') @section('content') @push('script') @endpush
Create
@include('common.alert')
@foreach ($data as $value) @endforeach
Question Answer Action Status
{{ str_limit(strip_tags($value->question),50) }}
{!! str_limit(strip_tags($value->answer),100) !!}
@csrf @method('DELETE')
@csrf @if ($value->faq_active == 0) @else @endif
@endsection