Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../resources/views/./customer/billings/..
الملفات الموجودة في هذا الـ Path:
.
..
accelerator
analytics
billings
campaign
contacts
dashboard.blade.php
demo_view.blade.php
domain
email_account
emailbox
form
group_records
groups
label
lead_finder
sender
settings
ticket
unibox

مشاهدة ملف: demo_view.blade.php

@extends('layouts.customer')

@section('title') Billings @endsection

@section('content')
    <form id="form" action="{{route('paymentgateway::process')}}" method="post">
        @csrf
        <input type="hidden" name="id" value="{{$plan->id}}">
    </form>
@endsection
@section('extra-scripts')
    <script>
        window.onload = function(){
            $('#form').submit();
        }
    </script>
@endsection