@extends('layouts.front') @section('content')
@include('includes.user.sidebar')

@lang('Plans Details')

@csrf
  • @lang('Plan:') {{ $subs->title }}
  • @lang('Price:') {{ round($subs->price * $curr->value, 2) }}{{ $curr->sign }}
  • @lang('Durations:') {{ $subs->days }} Day(s)
  • @lang('Product(s) Allowed:') {{ $subs->allowed_products == 0 ? 'Unlimited' : $subs->allowed_products }}
  • @if (!empty($package)) @if ($package->subscription_id != $subs->id)
  • @lang('Note'): @lang('Your Previous Plan will be deactivated!')
  • @endif @endif
@if ($user->is_vendor == 0)
@endif @if ($subs->price != 0)
@endif
@endsection @section('script') @endsection