@extends('superadmin.layouts.app') @section('title', 'Sync') @section('content') @include('superadmin.partials.alerts')
@csrf
@if ($isSyncing)
Synchronization in progress. Please be patient for a few minutes.
@endif
@forelse ($updates as $update)
{{ $update->entity_schema }} {{ $update->updates }} updates
@empty
Databases are synchronized.
@endforelse
@endsection