@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Make Payment']) @endsection @section('content') @php $stripe=false; @endphp
@php if(url('/') == env('APP_URL')){ $url=url('/merchant/make-charge/'); } else{ $url=url('/seller/make-charge/'); } @endphp @foreach($getways as $key => $row)
@if($row->slug == 'stripe') @php $stripe=true; @endphp
@csrf @php $credentials=json_decode($row->credentials->content ?? ''); @endphp
@if($info->price > 0) @else @endif
@else
@csrf
@if($info->price > 0) @else @endif
@endif
@endforeach
@endsection @push('js') @if($stripe == true) @endif @endpush