@extends('common::layouts.master') @section('system-update') active @endsection @section('content')

{{ __('System Update') }}

@php $is_old = settingHelper('version') < $latest_version; @endphp
Your Version

{{ get_version(settingHelper('version')) }}

{{ __('latest_version') }}

{{ get_version($latest_version) }}

@if(!$is_old)

{{ __('You are using the latest version') }}

@else

{{ __('An update is available') }}

@endif

{{ __('System Update Procedures') }}

{{ __('Please check this before hitting the update button') }}:

  1. It is strongly recommended to create a full backup of your current installation (files and database)
  2. Review the Change Log
@endsection