@extends('layouts.admin') @push('style') @endpush @section('content')
@if(getCustomerAddonBuildVersion($code) == $buildVersion)
{{ __("You have the latest version of this addon.") }}
@endif
{{ __('System Details') }}
{{ __('Addon Current Version') }} @if (getCustomerAddonBuildVersion($code) == $buildVersion) {{ get_option($code . '_current_version') }} @else {{ get_option($code . '_current_version', 'Not installed') }} {{ __('Download Addon') }} @endif
{{ __('Addon Current Code Version') }} {{ getAddonCodeCurrentVersion($code) }}
{{ __('Addon Current DB Version') }} {{ getAddonCodeBuildVersion($code) }}
{{ __('Application Required Version') }} {{ $appLatestVersion }}
{{ __('Application Current Version') }} @if (getCustomerCurrentBuildVersion() == $appBuildVersion) {{ get_option('current_version') }} @else {{ get_option('current_version') }} {{ __('Update') }} @endif
@if (getCustomerAddonBuildVersion($code) < $buildVersion && $requiredVersion <= $appBuildVersion)
  1. {{ __('Do not click install button if the application is customised. Your changes will be lost') }}.
  2. {{ __('Take backup all the files and database before install.') }}
@if ($uploadedFile != '') @endif
{{ __('Upload Addon') }}

{{ __('Install') }}
{{ __('Upload Completed') }}
@if ($errors->has('update_file')) {{ $errors->first('update_file') }} @endif
{{ $uploadedFile }} {{ __('Delete') }} {{ __('Install') }}
@endif
@endsection @push('script') @endpush