@if (session()->has('alert'))
@slot('type', session('alert')['type'])
@slot('msg', session('alert')['msg'])
@endif
@if ($errors->any())
@endif
@php
$features = [
'messages_limit' => __('Messages Limit'),
'device_limit' => __('Device Limit'),
'ai_message' => __('AI Message'),
'schedule_message' => __('Schedule Message'),
'bulk_message' => __('Bulk Message'),
'autoreply' => __('Auto Reply'),
'send_message' => __('Send Message'),
'send_media' => __('Send Media'),
'send_list' => __('Send List'),
'send_template' => __('Send Template'),
'send_button' => __('Send Button'),
'send_location' => __('Send Location'),
'send_poll' => __('Send Poll'),
'send_sticker' => __('Send Sticker'),
'send_vcard' => __('Send VCard'),
'webhook' => __('Webhook'),
'api' => __('API'),
];
@endphp
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
{{ __('Manage Plans') }}
@foreach ($plans as $plan)
@endforeach
{{ $plan->title }}
{{ number_format($plan->price) }} {{$plan->symbol}} / {{ $plan->days }} {{ __('days') }}
{{ __('Trial') }}: {{ $plan->trial_days }} {{ __('days') }}
-
@foreach ($plan->data as $key => $label)
- @if (!empty($label) && $label) ✅ @else ❌ @endif @if ($key == "messages_limit" || $key == "device_limit") {{ $features[$key] }} ({{number_format($label)}}) @else {{ $features[$key] }} @endif @endforeach