@extends('upgrade.layout') @section('title', 'Upgrade') @section('subtitle', 'Upgrade your application to the latest version') @section('content')

Application Upgrade

Current Version

Version
{{ $currentVersion }}
Status
@if($upgradeInProgress) Upgrade in progress @else Running @endif
@if($upgradeInProgress)
Upgrade In Progress

An upgrade is currently in progress. If the upgrade failed, you can rollback to the previous version.

@endif

Upload an upgrade package to update your application to a newer version.

@csrf
@if($errors->has('upgrade_package'))
{{ $errors->first('upgrade_package') }}
@endif
Upload the official upgrade package (ZIP file, max 500MB).

Important Notes:

  • Always backup your files and database before upgrading
  • The upgrade process will automatically create a backup
  • Do not close this window during the upgrade
  • Your custom files in storage/ and public/uploads/ will be preserved
@if(count($backups) > 0)

Available Backups

@foreach($backups as $backup)
{{ $backup['name'] }}
Version {{ $backup['version'] }} • {{ $backup['created_at'] }} • {{ $backup['size'] }}
@endforeach
@endif @endsection @section('footer')
@endsection @section('scripts') @endsection