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

{{ __($title) }}

@if (getCustomerCurrentBuildVersion() == $latestBuildVersion)
{{ __('You have the latest version of this app.') }}
@endif
@if (getCustomerCurrentBuildVersion() < $latestBuildVersion) @endif @if (!is_null($mysql_version)) @endif
{{ __('System Details') }}
{{ __('Current Version') }} @if (getCustomerCurrentBuildVersion() == $latestBuildVersion) {{ getOption('current_version') }} @else {{ getOption('current_version') }} @endif
{{ __('Latest Version') }} {{ __('Download Latest') }} {{ $latestVersion }}
{{ __('Laravel Version') }} {{ app()->version() }}
{{ __('PHP Version') }} {{ phpversion() }}
{{ $databaseType }} {{ $mysql_version }}
@if (getCustomerCurrentBuildVersion() < $latestBuildVersion)
  1. {{ __('Do not click update button if the application is customised. Your changes will be lost') }}.
  2. {{ __('Take backup all the files and database before updating.') }}
@if ($uploadedFile != '') @endif
{{ __('Upload File') }}

{{ __('Update') }}
{{ __('Upload Completed') }}
@if ($errors->has('update_file')) {{ $errors->first('update_file') }} @endif
{{ $uploadedFile }} {{ __('Delete') }} {{ __('Update') }}
@endif

{{ __('Zaisub Official Addons') }}

@foreach ($addons as $addon)
{{ $addon->title }} @if (isAddonInstalled($addon->code) > 0) {{ __('Installed') }} {{ getOption($addon->code . '_current_version') }} @endif

{!! $addon->details?->description !!}

@endforeach
@endsection @push('script') @endpush