@extends('admin.layouts.minimal') @section('title', __('Application Update')) @section('content')

{{ __('Install Update') }}

{{ __('We found that you have updated the core application or installed new module which is required to update database. So please install the update to migrate system before start using.') }}

@if ($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif @if($manager->hsaPendingMigration() || $manager->isUpdateAvailable())
{{ 'Required Following Update' }}
@if($manager->hsaPendingMigration()) @foreach($manager->hsaPendingMigration(true) as $migration => $status) @endforeach @endif @if($manager->isUpdateAvailable()) @foreach($manager->isUpdateAvailable(true) as $version => $file) @endforeach @endif
{{ str_replace(['2021_', '2022_', 'create_', 'add_'], '', $migration) }} {{ __('Migration Required') }}
{{ $version.'_update_system' }} {{ __('Update Required') }}
@endif
{{ __('Please keep a backup of your database before update, otherwise you will not be able to recover in case of any kind of system error.') }}
@endsection @push('scripts') @endpush