Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kberzinch committed Jul 27, 2024
1 parent 963d084 commit 2aac499
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/Nova/Actions/ReviewTrip.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ static function (?float $carry, \App\Models\TravelAssignment $assignment): ?floa
Currency::make('Square Processing Fee')
->default(static fn (): float => Payment::calculateProcessingFee($trip->fee_amount * 100) / 100)
->readonly()
->help(view('nova.help.travel.review.processingfee', ['fee_amount' => $trip->fee_amount])->render()),
->help(
view('nova.help.travel.review.processingfee', ['fee_amount' => $trip->fee_amount])->render()
),

Currency::make('Total Cost per Traveler')
->default(static fn (): float => $totalCost)
Expand Down

0 comments on commit 2aac499

Please sign in to comment.