@extends('layouts.admin') @section('content')
@include('include.errors') @if(isset($payment)) @php $id=$payment->id @endphp @else @php $id=0 @endphp @endif @if($id>0 && $action=='edit')
@else @endif @csrf
@if(isset($payment) && $payment->price) @php $price=$payment->price @endphp @else @php $price='' @endphp @endif
@if(isset($payment) && $payment->status!="") @php $status=$payment->status @endphp @else @php $status='P' @endphp @endif

@if(isset($payment) && $payment->payment_method) @php $payment_method=$payment->payment_method @endphp @else @php $payment_method='' @endphp @endif
@if(isset($payment) && $payment->transaction_id) @php $transaction_id=$payment->transaction_id @endphp @else @php $transaction_id='' @endphp @endif
@endsection @push('scripts') @endpush