@extends('layouts.app') @section('content')

MyTax/eInvoicing Test Console

System Configuration Status
API Credentials
Client ID: {{ $systemSettings->client_id ? 'Configured' : 'Missing' }}
Client Secret 1: {{ $systemSettings->client_secret_1 ? 'Configured' : 'Missing' }}
Client Secret 2: {{ $systemSettings->client_secret_2 ? 'Configured' : 'Missing' }}
Environment
{{ $systemSettings->sandbox_mode ? 'Sandbox Mode' : 'Production Mode' }}
Status: {{ $systemSettings->is_active ? 'Active' : 'Inactive' }}
Quick Actions
Create Test Order
Recent Orders
@foreach($recentOrders as $order) @endforeach
Order # Website Total MyTax Status Actions
{{ $order->order_number }} {{ $order->website->name ?? 'N/A' }} RM {{ number_format($order->total, 2) }} @if($order->mytax_submission_uid) Submitted @else Not Submitted @endif
Invoice Preview

Select an order to preview invoice data

Real-time Logs
@foreach($recentLogs as $log)
{{ $log['timestamp'] }} {{ $log['level'] }} {{ $log['message'] }}
@endforeach
@endsection @push('scripts') @endpush