@extends('OfflinePayment.payment') @section('tab-content')
{{ csrf_field() }}

Taux: @if( @request()->session()->get('transaction_details_tab3')[0]['taux']) {{@request()->session()->get('transaction_details_tab3')[0]['taux']}} @else 0.00 @endif

@php $totalAmount = ''; if(Session::has('transaction_details_tab3') ) { $totalAmount = @request()->session()->get('transaction_details_tab3')[0]['taux']+@request()->session()->get('transaction_details_tab3')[0]['amount']; $totalAmount = number_format($totalAmount,2,".",""); // die; } @endphp

Total

{{-- Cancel --}} Back
@endsection