Update BookingInfolist.php
PHP Tests / php-tests (push) Failing after 3m21s

This commit is contained in:
Nyan Lin Paing
2026-08-19 23:06:45 +07:00
parent 5c215b4647
commit a9124ccb8d
@@ -99,11 +99,12 @@ class BookingInfolist
// Payment/Refund Filament resources (T5.13), this is just a // Payment/Refund Filament resources (T5.13), this is just a
// quick-glance summary from the booking side. // quick-glance summary from the booking side.
Section::make('Payments') Section::make('Payments')
->columnSpanFull()
->schema([ ->schema([
RepeatableEntry::make('payments') RepeatableEntry::make('payments')
->label('') ->label('')
->schema([ ->schema([
Grid::make(6) Grid::make(8)
->schema([ ->schema([
TextEntry::make('gateway')->badge(), TextEntry::make('gateway')->badge(),
TextEntry::make('status') TextEntry::make('status')
@@ -116,6 +117,7 @@ class BookingInfolist
TextEntry::make('amount')->numeric(2), TextEntry::make('amount')->numeric(2),
TextEntry::make('currency'), TextEntry::make('currency'),
TextEntry::make('gateway_transaction_id')->label('Gateway Txn ID')->placeholder('—'), 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('—'), TextEntry::make('completed_at')->dateTime()->placeholder('—'),
]), ]),
]) ])