@extends('admin.layout')
{{-- this style will be applied when the direction of language is right-to-left --}}
@includeIf('admin.partials.rtl-style')
@section('content')
@php
$vendor_id = App\Models\Listing\Listing::where('id', $listing_id)->pluck('vendor_id')->first();
if ($vendor_id != 0) {
$dowgraded = App\Http\Helpers\VendorPermissionHelper::packagesDowngraded($vendor_id);
$listingCanAdd = packageTotalListing($vendor_id) - vendorTotalListing($vendor_id);
}
@endphp
@if (count($faqs) == 0)
{{ __('NO FAQ FOUND') . '!' }}
@else
@endif
{{-- create modal --}}
@include('admin.listing.faq.create')
{{-- edit modal --}}
@include('admin.listing.faq.edit')
{{-- Check Limit modal --}}
@includeIf('admin.listing.check-limit')
@endsection