@extends('eliteadmin::layouts.app') @section('title', 'Update Admin') @section('page_class', 'page-updates') @push('styles') @endpush @section('content') @if ($check->updateAvailable)
An update is available.
@elseif ($check->platformUnavailable) @elseif ($check->success)
{{ $check->message ?? 'Your admin application is up to date.' }}
@endif
Your Version
{{ $current['version'] }}
{{ $current['channel'] }}
{{ $current['build'] }}
Latest Version
{{ $check->latestVersion ?? $current['version'] }}
{{ $check->latestChannel ?? $current['channel'] }}
{{ $check->latestBuild ?? $current['build'] }}
@can('update', \App\Models\Setting::class) @if ($canApplyUpdate)
@csrf
@else @endif @endcan
@if ($check->updateAvailable && ! $tempPathConfigured)
Warning: You do not currently have a path configured for temporary storage of files during updates. You will not be able to perform an update until one is set. .
@elseif ($check->updateAvailable && empty($check->downloadUrl))
An update is available, but no automatic download URL is configured on the Product Owner platform. Review the release notes and deploy manually using your production process.
@endif @can('update', \App\Models\Setting::class) @endcan @endsection @if ($errors->has('update_temp_path')) @push('scripts') @endpush @endif