@extends('layouts.app') @section('title', __('Master Dashboard')) @section('content')
@if(Auth::user()->role == 'master') @include('layouts.master-left-menu') @elseif(Auth::user()->role == 'agent') @include('layouts.agent-left-menu') @endif
@include('schoolpayment.top-menu')
Selected plan {{$pricing->title}} for your subscription.
@if($pricing->country=='Bangladesh') @php $cs='৳'; $total = $pricing->price / (1 - 0.025); $amount = round($total, 2); $tran_fee = round($total, 2) - $pricing->price; @endphp @else @php $cs='$'; $total = ($pricing->price + 0.30) / (1 - 0.029); $amount = round($total, 2); $tran_fee = round($total, 2) - $pricing->price; @endphp @endif
Subscription {{subscription($pricing->subsMonth).' '.$cs.' '.$pricing->price}}
Payable Amount: {{$cs}} {{$pricing->price}}
+ Transaction Fee: {{$cs}} {{$tran_fee}}
Total Amount To Be Paid: {{$cs}} {{$amount}}
@if($pricing->country == 'Bangladesh') {!! Form::open(array('route' =>['school.renew.now',[$schools->code,$pricing->code]],'method' =>'POST','role' =>'form','autocomplete'=>'off','class'=>'stripe')) !!}
{!! Form::close() !!} @else {!! Form::open(array('route' =>['renew.now',[$schools->code,$pricing->code]],'method' =>'POST','role' =>'form','autocomplete'=>'off','class'=>'stripe')) !!}
{!! Form::close() !!} @endif Cancel
@push('script') @endpush @endsection