@extends('layouts.seller') @section('title', 'Select Products to Promote') @section('content')
Your Products
@csrf @if($products->count() == 0)
You don't have any products yet. Create a product first.
@else
@foreach($products as $product)
@endforeach
Back to Packages
@endif
Package Summary

{{ $package->name }}

Price: {{ $currency == 'INR' ? '₹' : '$' }}{{ number_format($currency == 'INR' ? $package->price : $package->price_usd, 0) }}
Duration: {{ $package->duration_days }} days
Max Products: {{ $package->max_products }}
Page Position: Page {{ $package->page_position }}
Your products will be promoted for {{ $package->duration_days }} days starting immediately after successful payment.
@endsection