29 lines
706 B
PHP
29 lines
706 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>Magento Migration Tool</title>
|
|
@vite(['resources/css/app.css'])
|
|
@stack('styles')
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>🛒 Magento Migration</h1>
|
|
<p>Migrate categories from Magento 1 to Magento 2 with multi-store support</p>
|
|
</div>
|
|
|
|
<div class="content">
|
|
@include('partials.navigation')
|
|
|
|
@yield('content')
|
|
</div>
|
|
</div>
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|
|
|