@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Prepaid Plan Name') }}: {{ $id->plan_name }}

{{ __('Plan Type') }}
{{ __('Prepaid') }}
{{ __('Plan Name') }}
{{ ucfirst($id->plan_name) }}
{{ __('Plan Status') }}
{{ ucfirst($id->status) }}
{{ __('Price') }}
{{ $id->price }}
{{ __('Currency') }}
{{ $id->currency }}
{{ __('Created Date') }}
{{ date_format($id->created_at, 'M d Y, H:i:s') }}
{{ __('GPT 4 Model Credits') }}
{{ number_format($id->gpt_4_credits_prepaid) }}
{{ __('GPT 4 Turbo Model Credits') }}
{{ number_format($id->gpt_4_turbo_credits_prepaid) }}
{{ __('GPT 3 Turbo Model Credits') }}
{{ number_format($id->gpt_3_turbo_credits_prepaid) }}
{{ __('Fine Tune Model Credits') }}
{{ number_format($id->fine_tune_credits_prepaid) }}
{{ __('Claude 3 Opus Model Credits') }}
{{ number_format($id->claude_3_opus_credits_prepaid) }}
{{ __('Claude 3 Sonnet Model Credits') }}
{{ number_format($id->claude_3_sonnet_credits_prepaid) }}
{{ __('Claude 3 Haiku Model Credits') }}
{{ number_format($id->claude_3_haiku_credits_prepaid) }}
{{ __('Gemini Pro Model Credits') }}
{{ number_format($id->gemini_pro_credits_prepaid) }}
{{ __('Characters Included') }}
{{ number_format($id->characters) }}
{{ __('Dalle Images Included') }}
{{ number_format($id->dalle_images) }}
{{ __('Stable Diffusion Images Included') }}
{{ number_format($id->sd_images) }}
{{ __('Minutes Included') }}
{{ number_format($id->minutes) }}
@endsection