@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)
@endif
Upload an upgrade package to update your application to a newer version.
@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