- @foreach ($errors->all() as $error)
- {{ $error }} @endforeach
Subscribe before adding listings
After you subscribe to a category plan, the matching listing form opens here.
View subscription plans@include('frontend.partials.head', ['title' => 'Fily | Add Listing']) @include('frontend.dashboard.partials.styles') @php $selectedType = $listingType ?? null; $selectedPlan = $selectedSubscription?->plan ?? null; $typeLabels = [ 'job' => ['Jobs', 'work'], 'rent' => ['Rentals', 'apartment'], 'hostel' => ['Hostels', 'bed'], 'service' => ['Services', 'design_services'], ]; $selectedLabel = $typeLabels[$selectedType][0] ?? 'Listing'; $selectedIcon = $typeLabels[$selectedType][1] ?? 'add_business'; $serviceTypeOptions = ($serviceTypes ?? collect())->map(function ($serviceType) { return [ 'id' => $serviceType->id, 'name' => $serviceType->name, 'icon' => $serviceType->icon ?: 'design_services', 'sub_types' => $serviceType->subTypes->map(function ($subType) { return [ 'id' => $subType->id, 'name' => $subType->name, ]; })->values(), ]; })->values(); @endphp
@include('frontend.partials.header')After you subscribe to a category plan, the matching listing form opens here.
View subscription plans