@extends('layouts.app') @section('title', $product->name . ' License') @push('styles') @endpush @section('content')
Back to Products
@php $icons = ['server'=>'fa-server','cloud'=>'fa-cloud','zap'=>'fa-bolt','shield'=>'fa-shield-halved','database'=>'fa-database','credit-card'=>'fa-credit-card','layout'=>'fa-table-columns','package'=>'fa-box']; @endphp

{{ $product->name }}

{{ $product->description }}

@if($product->features)
    @foreach($product->features as $feature)
  • {{ $feature }}
  • @endforeach
@endif

Choose Your Plan

@foreach($product->plans->sortBy('cycle_months') as $plan) @endforeach @auth
@csrf
The IP address where this license will be active.
Total Due Today ${{ number_format($product->plans->where('is_featured', true)->first()?->price ?? $product->plans->first()?->price ?? 0, 2) }}
Secure order via ResellerCenter API
@else

Sign in to purchase this license

Sign In to Order Create Account
@endauth
@push('scripts') @endpush @endsection