BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
resources
/
views
/
default
/
components
📤 Upload
📝 New File
📁 New Folder
Close
Editing: price-table.blade.php
<?php use App\Models\OpenAIGenerator; $wrapper_classname = 'px-7 pt-7 pb-11 rounded-3xl text-center'; if ($featured) { $wrapper_classname .= ' border'; } $currencySymbol = $currency ?? currency()->symbol; if ($planType == 'prepaid' && is_null($openAiItems)) { $openAIGenerators = OpenAIGenerator::query() ->where('active', true) ->get() ->groupBy('filters') ->filter(function ($item, $key) { return $key; }); foreach ($openAIGenerators as $step => $items) { foreach ($items as $generator) { $openAiItems[] = $generator->slug; } } } if (is_null($openAiItems)) { $openAiItems = []; } ?> <div class="{{ $wrapper_classname }} max-xl:px-6 max-lg:px-4"> <h6 class="mb-6 rounded-md border p-[0.35rem] text-[11px] text-opacity-80">{{ __($title) }}</h6> <p class="mb-1 text-[45px] font-medium leading-none -tracking-wide text-heading-foreground"> @if (currencyShouldDisplayOnRight($currencySymbol)) {{ $price }}<sup class="text-[0.53em]">{{ $currency }}</sup> @else <sup class="text-[0.53em]">{{ $currency }}</sup>{{ $price }} @endif </p> <p class="mb-4 text-sm opacity-60">{{ __($period) }}</p> <a class="mb-6 block w-full rounded-lg bg-black bg-opacity-[0.03] p-3 font-medium text-heading-foreground transition-colors hover:bg-black hover:text-white" href="{{ $buttonLink }}" >{{ __($buttonLabel) }}</a> <ul class="w-full px-1 text-left max-lg:p-0"> <li class="relative mb-3"> <span class="mr-3 inline-grid h-[22px] w-[22px] shrink-0 place-content-center rounded-xl bg-[#684AE2] bg-opacity-10 text-[#684AE2]"> <svg width="13" height="10" viewBox="0 0 13 10" fill="currentColor" xmlns="http://www.w3.org/2000/svg" > <path d="M3.952 7.537L11.489 0L12.452 1L3.952 9.5L1.78814e-07 5.545L1 4.545L3.952 7.537Z" /> </svg> </span> {{ __('Access to') }} <strong> {{ count($openAiItems) }} </strong> {{ __('Templates') }} <div class="group inline-block sm:relative sm:before:absolute sm:before:-inset-2.5"> <span class="peer relative -mt-6 inline-flex !h-6 !w-6 cursor-pointer items-center justify-center"> <x-tabler-info-circle-filled class="size-4 opacity-20" /> </span> <div class="min-w-60 pointer-events-none invisible absolute start-full top-1/2 z-10 ms-2 max-h-96 -translate-y-1/2 translate-x-2 scale-105 overflow-y-auto rounded-lg border bg-background p-5 opacity-0 shadow-xl transition-all before:absolute before:-start-2 before:top-0 before:h-full before:w-2 group-hover:pointer-events-auto group-hover:visible group-hover:translate-x-0 group-hover:opacity-100 max-sm:!end-0 max-sm:!start-0 max-sm:!top-full max-sm:!me-0 max-sm:!ms-0 max-sm:mt-4 max-sm:!translate-x-0 max-sm:!translate-y-0 [&.anchor-end]:end-2 [&.anchor-end]:start-auto [&.anchor-end]:me-2 [&.anchor-end]:ms-0" data-set-anchor="true" > <ul> @foreach ($openAiList->groupBy('filters') as $key => $openAi) <li class="mb-3 mt-5 first:mt-0"> <h5 class="text-base">{{ ucfirst($key) }}</h5> </li> @php($openAi = \App\Helpers\Classes\Helper::sortingOpenAiSelected($openAi, $openAiItems)) @foreach ($openAi as $itemOpenAi) <li class="mb-1.5 flex items-center gap-1.5 text-heading-foreground"> <span @class([ 'bg-[#684AE2] bg-opacity-10 text-[#684AE2]' => in_array( $itemOpenAi->slug, $openAiItems), 'bg-foreground/10 text-foreground' => !in_array( $itemOpenAi->slug, $openAiItems), 'size-4 inline-flex items-center justify-center rounded-xl align-middle', ])> @if (in_array($itemOpenAi->slug, $openAiItems)) <x-tabler-check class="size-3" /> @else <x-tabler-minus class="size-3" /> @endif </span> <small @class(['opacity-60' => !in_array($itemOpenAi->slug, $openAiItems)])> {{ $itemOpenAi->title }} </small> </li> @endforeach @endforeach </ul> </div> </div> </li> @if ($trialDays > 0) <li class="mb-4 flex items-center"> <span class="mr-3 inline-grid h-[22px] w-[22px] shrink-0 place-content-center rounded-xl bg-[#684AE2] bg-opacity-10 text-[#684AE2]"> <svg width="13" height="10" viewBox="0 0 13 10" fill="currentColor" xmlns="http://www.w3.org/2000/svg" > <path d="M3.952 7.537L11.489 0L12.452 1L3.952 9.5L1.78814e-07 5.545L1 4.545L3.952 7.537Z" /> </svg> </span> {{ number_format($trialDays) . ' ' . __('Days of free trial.') }} </li> @endif @if (!empty($activeFeatures)) @foreach (explode(',', $activeFeatures) as $feature) <li class="mb-4 flex items-center"> <span class="mr-3 inline-grid h-[22px] w-[22px] shrink-0 place-content-center rounded-xl bg-[#684AE2] bg-opacity-10 text-[#684AE2]"> <svg width="13" height="10" viewBox="0 0 13 10" fill="currentColor" xmlns="http://www.w3.org/2000/svg" > <path d="M3.952 7.537L11.489 0L12.452 1L3.952 9.5L1.78814e-07 5.545L1 4.545L3.952 7.537Z" /> </svg> </span> {{ trim(__($feature)) }} </li> @endforeach @endif <li class="mb-[0.625em]"> <span class="mr-3 inline-grid h-[22px] w-[22px] shrink-0 place-content-center rounded-xl bg-[#684AE2] bg-opacity-10 text-[#684AE2]"> <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" > <path stroke="none" d="M0 0h24v24H0z" fill="none" /> <path d="M5 12l5 5l10 -10" /> </svg> </span> @if ((int) $totalWords >= 0) <strong>@formatNumber($totalWords)</strong> {{ __('Word Tokens') }} @else <strong>{{ __('Unlimited') }}</strong> {{ __('Word Tokens') }} @endif </li> <li class="mb-[0.625em]"> <span class="mr-3 inline-grid h-[22px] w-[22px] shrink-0 place-content-center rounded-xl bg-[#684AE2] bg-opacity-10 text-[#684AE2]"> <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round" > <path stroke="none" d="M0 0h24v24H0z" fill="none" /> <path d="M5 12l5 5l10 -10" /> </svg> </span> @if ((int) $totalImages >= 0) <strong> @formatNumber($totalImages) </strong> {{ __('Image Tokens') }} @else <strong>{{ __('Unlimited') }}</strong> {{ __('Image Tokens') }} @endif </li> @if (!empty($inactiveFeatures)) @foreach (explode(',', $inactiveFeatures) as $feature) <li class="mb-4 flex items-center opacity-25"> <span class="mr-3 inline-grid h-[22px] w-[22px] shrink-0 place-content-center rounded-xl bg-[#684AE2] bg-opacity-10 text-[#684AE2]"> <svg width="5" height="2" viewBox="0 0 5 2" fill="currentColor" xmlns="http://www.w3.org/2000/svg" > <path d="M0 0.00299835H4.167V1.539H0V0.00299835Z" /> </svg> </span> {{ trim(__($feature)) }} </li> @endforeach @endif </ul> </div>
Save
Cancel