@extends('storefront.layout') @section('title', 'Parcel Help - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style') @php $topics = collect($questions ?? [])->map(fn ($question) => [ 'title' => $question['title'] ?? '', 'body' => $question['answer'] ?? '', ])->filter(fn ($question) => filled($question['title']))->values(); @endphp
Support

Parcel Help

Find admin-managed help answers or create a real support ticket.

Popular Topics

@forelse($topics as $topic)
{{ $topic['title'] }} {{ $topic['body'] }}
@empty
No help questions configured Create parcel help questions from the admin support question panel.
@endforelse

Report a parcel issue

Your ticket appears in the admin support panel with your account and parcel context.

@endsection