bb6b92df10
Create state-driven UI templates: Main Template (ops/order-detail.blade.php): - Display order summary with status, type, customer, date - Render QR code SVG for shop-floor access - Conditionally include state-specific action forms - Show order items, packing details, shipment info Action Templates: - ops/actions/packing.blade.php: Form to input weight/dimensions - ops/actions/inspection.blade.php: Pass/Fail inspection with optional notes - ops/actions/read-only.blade.php: Status display for read-only states Error Pages: - ops/order-not-found.blade.php: Invalid/expired QR token - ops/unauthorized.blade.php: Insufficient permissions All forms use AJAX submission with confirmation dialogs
16 lines
573 B
PHP
16 lines
573 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container mx-auto px-4 py-8">
|
|
<div class="bg-red-50 border-2 border-red-200 rounded-lg p-8 text-center">
|
|
<h1 class="text-4xl font-bold text-red-900 mb-3">❌ Order Not Found</h1>
|
|
<p class="text-red-700 mb-6 text-lg">
|
|
The QR code token is invalid or the order does not exist.
|
|
</p>
|
|
<a href="{{ route('home') }}" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded">
|
|
Return Home
|
|
</a>
|
|
</div>
|
|
</div>
|
|
@endsection
|