@extends('layouts.app') @section('title', 'Account') @section('content')

Account Account View information about your account, including your current plan, available limits, usage, and account limits.

Manage your account, plan details, usage, and limits.

Overview Overview Review the plan associated with your account and the limits available for users, templates, signature requests, and API usage.

View your current plan and account limits.

@if(Session::get('company_payment_status') == 'Free') Free Tier @else Active Plan @endif

Current Plan

{{ $plan_details->plan_name }}

Enjoy elevated signature capacities, template automation, and developer API integrations.

@if(Session::get('company_payment_status') == "Free") @else
Status Active
@endif

Included Plan Limits & Features

Max Team Members

Users available for team collaboration

{{ $plan_details->plan_users == 10000 ? 'Unlimited' : $plan_details->plan_users . ' Seats' }}
Document Templates

Reusable documents and sign workflows

{{ $plan_details->plan_templates == 10000 ? 'Unlimited' : $plan_details->plan_templates }}
Signature Requests

Total document packages allowed to send

{{ $plan_details->plan_signature_requests == 10000 ? 'Unlimited' : $plan_details->plan_signature_requests }}
Monthly API Request Quota

Webhook and REST API throughput limit

{{ $plan_details->plan_api_credits == 10000 ? 'Unlimited' : number_format($plan_details->plan_api_credits) . ' requests/month' }}

Usage & Limits Usage & Limits Monitor your plan's allocated resources and track your real-time usage across your account.

This section shows the resources included in your current plan and your ongoing usage.

Hosted Document Storage {{ Session::get("total_size_used") }} Mb / {{ Session::get("plan_storage") }} Mb Max
@php $storagePer = Session::get("plan_storage") != 0 ? round((100 * Session::get("total_size_used")) / Session::get("plan_storage")) : 0; @endphp
{{$storagePer}}%
Users {{ Session::get("total_user") }} / {{ Session::get('plan_users') == 10000 ? 'Unlimited' : Session::get('plan_users'). ' Max' }}
@php $userPer = Session::get("plan_users") != 0 ? round((100 * Session::get("total_user")) / Session::get("plan_users")) : 0; @endphp
{{$userPer}}%
Templates Created {{ Session::get("template_count") }} / {{ Session::get('plan_templates') == 10000 ? 'Unlimited' : Session::get('plan_templates').' Max' }}
@php $templatePer = Session::get("plan_templates") != 0 ? round((100 * Session::get("template_count")) / Session::get("plan_templates")) : 0; @endphp
{{$templatePer}}%
Monthly API Request Quota Available {{ $api_credit_used }} / {{ $plan_api_credit }} Max
@php $apiPer = $plan_api_credit > 0 ? round(($api_credit_used / $plan_api_credit) * 100, 2) : 0 @endphp
{{$apiPer}}%

Transactions

This section shows the invoices and bills

@if($transactions->isEmpty())

No Data Found

@else @foreach($transactions as $trx) @endforeach
Order # Amount Status Date
{{ $trx->order_number }} ${{ $trx->total_amount }} {{ $trx->payment_status }} {{ $trx->created_at }}
@endif
@endsection