@extends('user.layout.base') @section('title', 'Ride Confirmation ') @section('styles') @endsection @section('content')
@lang('user.ride.ride_now')
@include('common.notify')
{{ csrf_field() }}
@lang('user.type')
{{$service->name}}
@lang('user.total_distance')
{{distance($fare->distance)}}
@lang('user.eta')
{{$fare->time}}
@lang('user.estimated_fare')
{{currency($fare->estimated_fare)}}
@lang('user.promocode')
{{currency()}}
@lang('user.total')
{{currency($fare->estimated_fare - 0)}}
@if(Auth::user()->wallet_balance > 0)
@lang('user.use_wallet_balance')
@lang('user.available_wallet_balance')
{{currency(Auth::user()->wallet_balance)}}
@endif
@if(Config::get('constants.braintree') == 1)
@endif
@if(Request::get('rental_hours') != '')
@endif
@lang('user.promocode')
@lang('user.promocode_select')
@foreach($promolist as $promo)
{{$promo->promo_code}}
@endforeach
@lang('user.payment_method')
@if(Config::get('constants.cash') == 1)
CASH
@endif @if(Config::get('constants.card') == 1) @if($cards->count() > 0)
CARD
@endif @if(Config::get('constants.braintree') == 1)
BRAINTREE
@endif @endif @if(Config::get('constants.payumoney') == 1)
PAYUMONEY
@endif @if(Config::get('constants.paypal') == 1)
PAYPAL
@endif @if(Config::get('constants.paypal_adaptive') == 1)
PAYPAL-ADAPTIVE
@endif @if(Config::get('constants.paytm') == 1)
PAYTM
@endif @if(Config::get('constants.wallet') == 1)
WALLET
@endif
@if(Config::get('constants.card') == 1) @if($cards->count() > 0)
Select Card
@foreach($cards as $card)
{{$card->brand}} **** **** **** {{$card->last_four}}
@endforeach
@endif @endif @if(Config::get('constants.braintree') == 1)
@endif @if($fare->surge == 1)
@lang('user.demand_node')
{{$fare->surge_value}}
@endif
@lang('user.ride.ride_now')
@lang('user.schedule')
@lang('user.from')
{{$request->s_address}}
@lang('user.to')
{{$request->d_address}}
×
@lang('user.schedule_title')
@lang('user.schedule_date')
@lang('user.schedule_time')
@endsection @section('scripts') @if(Config::get('constants.braintree') == 1) @endif @endsection