Service Details

Due date: {{ $order->date }}

  • ServiceAmount
  • @if ($order->on_demand == 'Today')
  • On Demand${{ $order->on_demand_fee }}
  • @endif
  • Lawn size ({{ $order->lawnSize->name }})${{ $order->lawn_size_amount }}
  • Lawn height ({{ $order->lawnHeight->name }})${{ $order->lawn_height_amount }}
  • @if ($order->cornerLot)
  • Corner lot ${{ $order->corner_lot_amount }}
  • @endif @if ($order->fence)
  • Fence ({{ $order->fence->name }}) ${{ $order->fence_amount }}
  • @endif @if ($order->cleanUp)
  • Yard cleanup ({{ $order->cleanUp->name }})${{ $order->cleanup_amount }}
  • @endif
  • Admin fees${{ $order->admin_fee }}
  • Tax fees${{ $order->tax }}
  • @if ($order->discount_amount)
  • Discount Remove discount -${{ $order->discount_amount ?? 0 }}
  • @endif @if ($order->tip)
  • Tip ${{ $order->tip }}
  • @endif
  • Total${{ number_format((float)$order->grand_total, 2, '.', ''); }}

Tip your service provider

tip_type ? $order->tip_type == 'one-time' ? 'checked' : '' : 'checked' }}>
tip_type == 'recurring' ? 'checked' : '' }}>
@if (!$order->discount_amount)
@else

Coupon already applied

@endif
  • Grand Total${{ number_format((float)$order->grand_total, 2, '.', ''); }}
  • @if(auth()->id())
    @php $wallet = App\Models\Wallet::whereUserId(auth()->id())->first(); $defaultCard = App\Models\Card::whereUserId(auth()->id())->whereIsDefault("1")->first(); @endphp
    M&P wallet balance: ${{ $wallet->amount }}
    @if ($defaultCard)
    Default Card number: **** **** **** {{ $defaultCard->last4 }}
    @else @endif
    @else @include('client.lawn-mowing.login-and-registration') @endif