@extends('admin.layout') @php use App\Models\Language; $selLang = Language::where('code', request()->input('language'))->first(); @endphp @if (!empty($selLang->language) && $selLang->language->rtl == 1) @section('styles') @endsection @endif @section('content')
{{ __('Edit package') }}
{{ __('Back') }}
@csrf

{{'*'. __('Click on the dropdown sign to select a icon') . '.' }}

{{--

--}}

{{ __('If price is 0 , than it will appear as free') }}

@php $permissions = $package->features; if (!empty($package->features)) { $permissions = json_decode($permissions, true); } @endphp
@php $aiEngine = $package->ai_engine ?? null; $aiPages = $package->ai_pages ? json_decode($package->ai_pages, true) : []; $aiGenerateLimit = $package->ai_generate_limit ?? null; @endphp
{{-- AI Engine --}}

{{'*'. __('Paid AI engines require a valid API key and active billing') . '. '. __('Free engines do not require any API key'). '.' }} {{ '*' . __('If One-Click AI Website Setup is enabled, you must select an AI Engine and at least one AI Generated Page') . '.' }}
{{-- AI Pages --}}
@php $pageOptions = [ 'Home Page' => 'Home', 'About Page' => 'About', 'Services Page' => 'Services', 'Team Page' => 'Team', 'Career Page' => 'Career', 'FAQ Page' => 'FAQ', 'Gallery Page' => 'Gallery', 'Blog Page' => 'Blog', 'Portfolio Page' => 'Portfolio', 'Contact Page' => 'Contact', 'Shop Page' => 'Shop', 'Course Page' => 'Courses', 'Room Page' => 'Rooms', 'Cause Page' => 'Causes', ]; @endphp @foreach ($pageOptions as $value => $label) @endforeach

{{-- AI Generate Limit --}}

{{'*'. __('Set how many times user can generate full site content using AI in this package') . '.' }}

{{ __('Enter 999999 , then it will appear as unlimited') }}

{{ __('Enter 999999 , then it will appear as unlimited') }}

{{ __('Enter 999999 , then it will appear as unlimited') }}

@if ($package->is_trial == 1)
@else @endif

{{ __('Enter 999999 , then it will appear as unlimited') }}

{{ __('The higher the serial number is, the later the feature will be shown.') }}

@endsection @section('scripts') @endsection