@extends('layouts.app') @section('title', 'MyTax Dashboard') @section('content')
Monitor e-invoice submissions to LHDN Malaysia
submissions in last 24 hours
| Order | Website | Customer | Amount | Status | Submitted | Validated | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $order->order_number }}
@if($order->mytax_long_id)
{{ $order->mytax_long_id }} @endif |
{{ $order->website->domain }} | {{ $order->customer_name }} | RM {{ number_format($order->total_amount, 2) }} | @if($order->mytax_status === 'accepted') Accepted @elseif($order->mytax_status === 'rejected') Rejected @elseif($order->mytax_status === 'pending') Pending @else Submitted @endif | {{ $order->mytax_submitted_at ? $order->mytax_submitted_at->format('d/m/Y H:i') : '-' }} | {{ $order->mytax_validated_at ? $order->mytax_validated_at->format('d/m/Y H:i') : '-' }} | |
|
No MyTax submissions found |
|||||||