@extends('admin.layouts.app') @section('title', 'Preview Imported Content') @section('content') {{-- Preview Page: Display parsed content with edit capability before saving --}}
{{-- Page Header --}}

Preview Imported Content

Review and edit the parsed content before saving as a Post or Product.

@csrf {{-- Target Type Selection --}}
{{-- Basic Information --}}

Basic Information

{{-- Title --}}
{{-- Slug --}}
{{-- Summary --}}
{{-- Content --}}

Content

{{-- Pros & Cons --}}
{{-- Pros --}}

Pros

@if(!empty($parsed['pros'])) @foreach($parsed['pros'] as $index => $pro)
@endforeach @endif
{{-- Cons --}}

Cons

@if(!empty($parsed['cons'])) @foreach($parsed['cons'] as $index => $con)
@endforeach @endif
{{-- Features --}}

Features

@if(!empty($parsed['features'])) @foreach($parsed['features'] as $index => $feature)
@endforeach @endif
{{-- FAQs --}} @if(!empty($parsed['faqs']))

FAQs

@foreach($parsed['faqs'] as $index => $faq)
@endforeach
@endif {{-- SEO & Additional --}}

SEO & Additional Information

This text will appear above the affiliate link button

{{-- Action Buttons --}}
Back to Import
@push('scripts') @endpush @endsection