@extends('admin.layouts.app') @push('title') {{ @$title }} @endpush @push('style') @endpush @section('content')

{{ __($title) }}

{{ __('System Details') }}
{{ __('Addon Current Version') }} @if (getCustomerAddonBuildVersion($code) == $buildVersion) {{ getOption($code . '_current_version') }} @else {{ getOption($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) {{ getOption('current_version') }} @else {{ getOption('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