diff --git a/app-modules/booking/src/Filament/Resources/Bookings/Schemas/BookingInfolist.php b/app-modules/booking/src/Filament/Resources/Bookings/Schemas/BookingInfolist.php index d5ff989..4ef4846 100644 --- a/app-modules/booking/src/Filament/Resources/Bookings/Schemas/BookingInfolist.php +++ b/app-modules/booking/src/Filament/Resources/Bookings/Schemas/BookingInfolist.php @@ -99,11 +99,12 @@ class BookingInfolist // Payment/Refund Filament resources (T5.13), this is just a // quick-glance summary from the booking side. Section::make('Payments') + ->columnSpanFull() ->schema([ RepeatableEntry::make('payments') ->label('') ->schema([ - Grid::make(6) + Grid::make(8) ->schema([ TextEntry::make('gateway')->badge(), TextEntry::make('status') @@ -116,6 +117,7 @@ class BookingInfolist TextEntry::make('amount')->numeric(2), TextEntry::make('currency'), TextEntry::make('gateway_transaction_id')->label('Gateway Txn ID')->placeholder('—'), + TextEntry::make('gateway_payload.mm_order_id')->label('Transaction ID')->placeholder('—')->columnSpan(2), TextEntry::make('completed_at')->dateTime()->placeholder('—'), ]), ])