Rp {{ number_format($price->monthly->price, 0, '', '.') }}
Rp
{{ number_format($price_monthly, 0, '', '.') }}
/ bulan
Kamu hemat Rp. {{ number_format($discount_monthly, 0, '', '.') }}!
Jumlah user
{{ number_format(@$p->value3??0.0, 0, '', '.') }}
@if ($index == 1)
Semua Fitur pada Paket Regular
@endif
@php
$feature_count = 0;
$feature_count_used = count($feature_used);
@endphp
@foreach ($feature as $f)
@if (in_array($f->id, $package_feature) && !in_array($f->id, $feature_used))
@php
array_push($feature_used, $f->id);
@endphp
{{ $f->name }}
@php
$feature_count++;
@endphp
@endif
@endforeach
@if ($index == 1)
@php
$blank = $feature_count_used - $feature_count - 1;
@endphp
@if ($blank > 0)
@for ($i = 0; $i < $blank; $i++)
@endfor
@endif
@endif