@extends('layouts.app') @section('title', 'Pricing Plans - SecureSoftPay') @push('styles') @endpush @section('content')

{{ $active_group ? ucwords($active_group->name) : 'Products' }}

@if($products->isNotEmpty()) @foreach($products as $product)

{{ $product->name }}

    @php $features = explode(',', $product->description ?? ''); @endphp @foreach ($features as $feature) @if (!empty(trim($feature)))
  • • {{ trim($feature) }}
  • @endif @endforeach
Starting from
৳{{ number_format($product->price, 2) }} BDT
{{ str_replace('/', '', $product->term) }}
Order Now
@endforeach @else

No active products available in this category yet.

@endif
@endsection