@extends('frontend.layouts.app') @section('title', $product->name) @section('content')
{{ $product->name }} @if($product->gallery)
@foreach(json_decode($product->gallery) as $image)
Gallery Image
@endforeach
@endif

{{ $product->name }}

{{ $product->category->name ?? 'Uncategorized' }} @if($product->is_featured) Featured @endif

{{ $product->short_description }}

Select Your Package
@csrf
Select Account Type:
@foreach($accountTypes as $type)
is_default ? 'checked' : '' }}>
{{ $type->description ?? '' }}
@endforeach
Select Duration:
Selected Package:
Personal Account - 1 Month
Total Price:

{{ setting('currency_symbol', '৳') }} 0.00

{!! $product->full_description !!}
  • Instant Delivery
  • 24/7 Support
  • Premium Quality
  • Regular Updates
Refund Policy

Due to the digital nature of our products, we do not offer refunds after delivery. Please review your selection carefully before purchasing.

Delivery is usually instant. You'll receive your product within 5-30 minutes after successful payment.

We offer both personal and shared accounts. Personal accounts are for individual use only, while shared accounts can be used by multiple users.
@if($relatedProducts->count() > 0)

Related Products

@foreach($relatedProducts as $relatedProduct)
{{ $relatedProduct->name }}
{{ Str::limit($relatedProduct->name, 40) }}

{{ Str::limit($relatedProduct->short_description, 60) }}

{{ setting('currency_symbol', '৳') }} {{ number_format($relatedProduct->base_price, 2) }}
View
@endforeach
@endif
@endsection @push('scripts') @endpush