Service Details

  • Service for {{ $type }}
  • @if($order->subcategory_id)
  • Car Type{{ ucfirst($order->car->name) }}
  • @endif @if($order->color_id)
  • Color{{ ucfirst($order->color->name) }}
  • @endif @if($order->car_number)
  • Plate number{{ $order->car_number }}
  • @endif
  • Date{{ $order->date }}
  • Schedule time{{ $order->schedule->name }} ({{ $order->schedule->time }})
  • ServiceAmount
  • @if ($order->subcategory_amount)
  • Car Snow Removal${{ $order->subcategory_amount }}
  • @endif @if ($order->driveway_amount)
  • Driveway ({{ $order->driveway }} cars)${{ $order->driveway_amount }}
  • @endif @if ($order->snow_depth_amount)
  • Snow Depth ({{ $order->snowDepth->name }})${{ $order->snow_depth_amount }}
  • @endif @if ($order->sidewalk_amount)
  • Sidewalk${{ $order->sidewalk_amount }}
  • @endif @if ($order->walkway_amount)
  • Walkway${{ $order->walkway_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

@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.snow-plowing.login-and-registration') @endif