@extends('layouts.admin') @push('title', get_phrase('About')) @push('meta')@endpush @push('css')@endpush @section('content') @php $curl_enabled = function_exists('curl_version'); @endphp
{{ get_phrase('About this application') }}
{{ get_phrase('Software version') }} {{ get_settings('version') }}
{{ get_phrase('Laravel version') }} 11.10.0
{{ get_phrase('Check update') }} {{ get_phrase('Check update') }}
{{ get_phrase('Php version') }} {{ phpversion() }}
{{ get_phrase('Curl enable') }} @php echo $curl_enabled ? '' . get_phrase('Enabled') . '' : '' . get_phrase('Disabled') . ''; @endphp
{{ get_phrase('Fileinfo extension') }} @if (extension_loaded('fileinfo')) {{ get_phrase('Enabled') }} @else {{ get_phrase('Enable this Fileinfo extension on your server to upload files') }} {{ get_phrase('Disabled') }} @endif
{{ get_phrase('Purchase code') }} {{ get_settings('purchase_code') }}
{{ get_phrase('Product license') }} @if ($application_details['product_license'] == 'valid') {{ $application_details['product_license'] }} @else {{ $application_details['product_license'] }} {{ get_phrase('Enter valid purchase code') }} @endif
{{ get_phrase('Customer support status') }} @if (strtolower($application_details['purchase_code_status']) == 'expired') {{ $application_details['purchase_code_status'] }} {{ get_phrase('Renew support') }} @elseif (strtolower($application_details['purchase_code_status']) == 'valid') {{ $application_details['purchase_code_status'] }} @else {{ $application_details['purchase_code_status'] }} @endif
{{ get_phrase('Support expiry date') }} @if ($application_details['support_expiry_date'] != 'invalid') {{ $application_details['support_expiry_date'] }} @else {{ ucfirst($application_details['support_expiry_date']) }} @endif
{{ get_phrase('Customer name') }} @if ($application_details['customer_name'] != 'invalid') {{ $application_details['customer_name'] }} @else {{ ucfirst($application_details['customer_name']) }} @endif
{{ get_phrase('Get customer support') }} {{ get_phrase('Customer support') }}