@extends('frontend.layout.master') @section('content')

Checkout Form

SELECT ADDRESS
@foreach ($getOrderAddress['recordList'] as $getOrderAddress) @endforeach
# Name Phone Address
{{ $getOrderAddress['name'] }} {{ $getOrderAddress['phoneNumber'] }} {{ $getOrderAddress['flatNo'] }},{{ $getOrderAddress['locality'] }},{{ $getOrderAddress['landmark'] }},{{ $getOrderAddress['city'] }},{{ $getOrderAddress['state'] }},{{ $getOrderAddress['country'] }},{{ $getOrderAddress['pincode'] }}
Product Detail

{{ $getproductdetails['recordList'][0]['name'] }}

{{ $getproductdetails['recordList'][0]['features'] }}

Price:

{{ $currency['value'] }}{{ number_format($getproductdetails['recordList'][0]['amount'], 2) }}

Gst( {{ $gstvalue['value'] }}%):

{{ $currency['value'] }}{{ number_format($getproductdetails['recordList'][0]['amount'] * ($gstvalue['value'] / 100), 2) }}


Total Price:

{{ $currency['value'] }}{{ number_format($getproductdetails['recordList'][0]['amount'] + $getproductdetails['recordList'][0]['amount'] * ($gstvalue['value'] / 100), 2) }}

@endsection @section('scripts') @endsection