@assets
@endassets
@if(config('app.version') == 'beta')
Warning: You are using a beta version of the application. This can cause problems
@endif
@if(config('app.version') == 'beta' && config('settings.latest_commit') != config('app.commit'))
Latest commit: {{ config('settings.latest_commit') }}
Your commit: {{ config('app.commit') }}
See https://paymenter.org/docs/installation/updating
on how to update
OR try the web updater (This is a beta feature, use at your own risk)
{{ $this->update }}
@elseif(config('app.version') != config('settings.latest_version') && config('app.version') != 'beta')
Latest version: {{ config('settings.latest_version') }}
Your version: {{ config('app.version') }}
See https://paymenter.org/docs/installation/updating
on how to update
OR try the web updater (This is a beta feature, use at your own risk)
{{ $this->update }}
@else
Latest version: {{ config('settings.latest_version') }}
Your version: {{ config('app.version') }}
You are up to date!
@endif