@extends('upgrade.layout')
@section('title', 'Verify')
@section('subtitle', 'Review upgrade details')
@section('content')
Upgrade Details
Please review the upgrade information below before proceeding.
Upgrade Information
Current Version
{{ $packageInfo['current_version'] }}
New Version
{{ $packageInfo['new_version'] }}
Release Date
{{ $packageInfo['release_date'] }}
Files to Update
{{ $packageInfo['files_count'] }} files
Database Migration
@if($packageInfo['requires_database_migration'])
Required
@else
Not required
@endif
@if(count($packageInfo['changes']) > 0)
What's New
@foreach($packageInfo['changes'] as $change)
-
{{ $change }}
@endforeach
@endif
Safety First
The next step will automatically create a complete backup of your application and database. This ensures you can rollback if anything goes wrong.
@endsection
@section('footer')
Cancel
@endsection