@extends("front/layout.master") @section('title','Seller Plans |') @section("body")

Pricing

{{ __("staticwords.pricingtext") }}

@forelse ($plans as $plan)
{{ $plan->name }}

{{ sprintf("%.2f",currency($plan->price, $from = $defCurrency->currency->code, $to = session()->get('currency')['id'] , $format = false)) }}/{{ $plan->period }}


{!! $plan->detail !!} @if(auth()->user()->activeSubscription && date('Y-m-d h:i:s') <= auth()->user()->activeSubscription->end_date && auth()->user()->activeSubscription->status == 1 && auth()->user()->activeSubscription->plan->id == $plan->id) @else
@csrf
@endif
@empty

{{ __("No Plans Found !") }}

@endforelse

@endsection