Viewing file: edit.blade.php (4.89 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
use App\Models\User;
?>
<form method="POST" enctype="multipart/form-data" class="d-block ajaxForm" action="{{ route('admin.fee_manager.update', ['id' => $invoice_details->id]) }}"> @csrf <div class="form-row"> <div class="fpb-7"> <label for="class_id_on_create" class="eForm-label">{{ get_phrase('Class') }}</label> <select name="class_id" id="class_id_on_create" class="form-select eForm-select eChoice-multiple-with-remove" required onchange="classWiseStudentOnCreate(this.value)"> <option value="">{{ get_phrase('Select a class') }}</option> @foreach($classes as $class) <option value="{{ $class['id'] }}" <?php if ($class['id'] == $invoice_details['class_id']): ?> selected <?php endif; ?>>{{ $class['name'] }}</option> @endforeach </select> </div>
<div class="fpb-7"> <label for="student_id_on_create" class="eForm-label">{{ get_phrase('Select student') }}</label> <div id = "student_content"> <select name="student_id" id="student_id_on_create" class="form-select eForm-select eChoice-multiple-with-remove" required > <option value="">{{ get_phrase('Select a student') }}</option> @foreach ($enrollments as $enrollment) <?php $student = User::find($enrollment->user_id); ?> <option value="{{ $enrollment['user_id'] }}" <?php if ($invoice_details['student_id'] == $enrollment['user_id']): ?>selected<?php endif; ?>>{{ $student['name'] }}</option> @endforeach </select> </div> </div>
<div class="fpb-7"> <label for="title" class="eForm-label">{{ get_phrase('Invoice title') }}</label> <input type="text" class="form-control eForm-control" id="title" name = "title" value="{{ $invoice_details['title'] }}" required> </div>
<div class="fpb-7"> <label for="total_amount" class="eForm-label">{{ get_phrase('Total amount').'('.school_currency().')' }}</label> <input type="text" class="form-control eForm-control" id="total_amount" name = "total_amount" value="{{ $invoice_details['total_amount'] }}" required> </div>
<div class="fpb-7"> <label for="paid_amount" class="eForm-label">{{ get_phrase('Paid amount').'('.school_currency().')' }}</label> <input type="text" class="form-control eForm-control" id="paid_amount" name = "paid_amount" value="{{ $invoice_details['paid_amount'] }}" required> </div>
<div class="fpb-7"> <label for="status" class="eForm-label">{{ get_phrase('Status') }}</label> <select name="status" id="status" class="form-select eForm-select eChoice-multiple-with-remove" required > <option value="">{{ get_phrase('Select a status') }}</option> <option value="paid" <?php if ($invoice_details['status'] == 'paid'): ?> selected <?php endif; ?>>{{ get_phrase('Paid') }}</option> <option value="unpaid" <?php if ($invoice_details['status'] == 'unpaid'): ?> selected <?php endif; ?>>{{ get_phrase('Unpaid') }}</option> </select> </div>
<div class="fpb-7"> <label for="payment_method" class="eForm-label">{{ get_phrase('Payment method') }}</label> <select name="payment_method" id="payment_method" class="form-select eForm-select eChoice-multiple-with-remove"> <option value="">{{ get_phrase('Select a payment method') }}</option> <option value="cash" <?php if ($invoice_details['payment_method'] == 'cash'): ?> selected <?php endif; ?>>{{ get_phrase('Cash') }}</option> <option value="paypal" <?php if ($invoice_details['payment_method'] == 'paypal'): ?> selected <?php endif; ?>>{{ get_phrase('Paypal') }}</option> <option value="paytm" <?php if ($invoice_details['payment_method'] == 'paytm'): ?> selected <?php endif; ?>>{{ get_phrase('Paytm') }}</option> <option value="razorpay" <?php if ($invoice_details['payment_method'] == 'razorpay'): ?> selected <?php endif; ?>>{{ get_phrase('Razorpay') }}</option> <option value="paystack" <?php if ($invoice_details['payment_method'] == 'paystack'): ?> selected <?php endif; ?>>{{ get_phrase('Paystack') }}</option> </select> </div> </div>
<div class="form-group col-md-12"> <button class="btn-form" type="submit">{{ get_phrase('Update invoice') }}</button> </div>
</form>
<script type="text/javascript">
"use strict";
function classWiseStudentOnCreate(classId) { let url = "{{ route('admin.class_wise_student', ['id' => ":classId"]) }}"; url = url.replace(":classId", classId); $.ajax({ url: url, success: function(response){ $('#student_id_on_create').html(response); } }); }
$(document).ready(function () { $(".eChoice-multiple-with-remove").select2(); });
</script>
|