@extends('layouts.admin') @section('title', 'Update ' . $update->version) @section('page-title', 'Update Details') @section('breadcrumbs') Updates chevron_right {{ $update->version }} @endsection @section('header-actions') @if($update->download_url && $hasAccess) download Download Update @endif @if(!$update->is_installed)
@csrf
@endif @endsection @section('content')

{{ $update->title }}

{{ ucfirst($update->type) }} Update

Version {{ $update->version }}

@if($update->released_at)

Released: {{ $update->released_at->format('F d, Y') }}

@endif
@if($update->is_installed) Installed @else Available @endif
@if($update->description)

Description

{{ $update->description }}

@endif @if(!$hasAccess)
warning

License Required

A valid license is required to download this update. Please activate your license in License Settings.

@endif
@if($update->changelog)

Changelog

{!! nl2br(e($update->changelog)) !!}
@endif

Update Information

Current Version

{{ $currentVersion }}

Update Version

{{ $update->version }}

Update Type

{{ ucfirst($update->type) }}

@if($update->released_at)

Release Date

{{ $update->released_at->format('F d, Y') }}

@endif

Installation Instructions

  1. Backup your system - Create a full backup of your database and files before proceeding
  2. Download the update - Click the "Download Update" button above to get the update package
  3. Extract the files - Extract the downloaded ZIP file to a temporary location
  4. Upload via FTP/SFTP - Upload all files from the extracted folder to your server, overwriting existing files
  5. Run migrations - SSH into your server and run: php artisan migrate
  6. Clear caches - Run these commands:
    • php artisan cache:clear
    • php artisan config:clear
    • php artisan view:clear
  7. Verify installation - Check that your application is running correctly
  8. Mark as installed - Click "Mark as Installed" button above to track this update

⚠️ Important: This system does not support automatic updates. All updates must be performed manually. Never use shell commands or automated scripts that could compromise your system security.

@if($update->release_notes_url)
View Full Release Notes →
@endif
@endsection