@extends('front.patient.inner-layout.app') @section('page_tab_title' ,"Check out") @section('content')
@csrf

My Products

@include('front.patient.inner-layout.header')
Back

Shipping address

{{--
--}}

Shipping method

@if(isset($products) && count($products))
@foreach($products as $key => $value)
...
{{$value['product_name'] ?? "" }}
{{-- --}}
Qty:
${{$value['product_price'] ?? "" }}
Remove
@endforeach
Subtotal
${{ number_format($total, 2) ?? "0.00" }}
Shipping
${{$shipping_method[0]['shiping_cost'] ?? 0.00}}
Total
${{ number_format($total+$shipping_method[0]['shiping_cost'], 2) ?? "0.00" }}
@endif
@endsection @section('modals')
@endsection @section('css') @endsection @section('js') @endsection