@extends('installer.layout') @section('title', 'Database Migration — Quickro POS Installer') @section('content')

Database Migration

Running migrations to create all database tables and seeding initial data.

@if(isset($success) && $success)

Migrations completed successfully!

All tables have been created and initial data seeded.

Create Admin Account @elseif(isset($success) && !$success)

Migration failed

@if(!empty($error))

{{ $error }}

@endif
@else {{-- Auto-trigger migration on page load --}}

Running migrations…

This may take a moment. Do not close this page.

@endif
@endsection