Viewing file: list.blade.php (6.42 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php use App\Http\Controllers\CommonController; ?>
<div> <table id="basic-datatable" class="table eTable"> <thead> <tr> <th>{{ get_phrase('Invoice No') }}</th> <th>{{ get_phrase('Student') }}</th> <th>{{ get_phrase('Invoice Title') }}</th> <th>{{ get_phrase('Total Amount') }}</th> <th>{{ get_phrase('Paid Amount') }}</th> <th>{{ get_phrase('Status') }}</th> <th>{{ get_phrase('Option') }}</th> </tr> </thead> <tbody> @foreach($invoices as $invoice) <?php $student_details = (new CommonController)->get_student_details_by_id($invoice['student_id']); ?> <tr> <td> {{ sprintf('%08d', $invoice['id']) }} </td> <td> {{ $student_details['name'] }} <br> <small> <strong>{{ get_phrase('Class') }} :</strong> {{ $student_details['class_name'] }}</small> <br> <small> <strong>{{ get_phrase('Section') }} :</strong> {{ $student_details['section_name'] }}</small> </td> <td> {{ $invoice['title'] }} </td> <td> {{ school_currency($invoice['total_amount']) }} <br> <small> <strong> {{ get_phrase('Created at') }} : </strong> {{ date('d-M-Y', $invoice['timestamp']) }} </small> </td> <td> {{ school_currency($invoice['paid_amount']) }} <br> <small> <strong> {{ get_phrase('Payment date') }} : </strong> <?php $updated_time = strtotime($invoice['updated_at']); ?> <?php if ($updated_time != ""): ?> {{ date('d-M-Y', $updated_time) }} <?php else: ?> {{ get_phrase('Not found') }} <?php endif; ?>
</small> </td> <td> <?php if (strtolower($invoice['status']) == 'unpaid'): ?> <span class="eBadge ebg-soft-danger">{{ ucfirst($invoice['status']) }}</span> <?php elseif (strtolower($invoice['status']) == 'pending'): ?> <span class="eBadge ebg-soft-warning">{{ ucfirst($invoice['status']) }}</span> <?php else: ?> <span class="eBadge ebg-soft-success">{{ ucfirst($invoice['status']) }}</span> <?php endif; ?> </td> <td> <div class="adminTable-action"> <button type="button" class="eBtn eBtn-black dropdown-toggle table-action-btn-2" data-bs-toggle="dropdown" aria-expanded="false" > {{ get_phrase('Actions') }} </button> <ul class="dropdown-menu dropdown-menu-end eDropdown-menu-2 eDropdown-table-action" > <li> <a class="dropdown-item" href="{{ route('student.studentFeeinvoice', ['id'=>$invoice['id']]) }}" target="_blank">{{ get_phrase('Print invoice') }}</a> </li> @if(strtolower($invoice['status']) == 'unpaid') <li> <a class="dropdown-item" href="{{ route('student.FeePayment', ['id'=>$invoice['id']]) }}" >{{ get_phrase('Pay') }}</a> </li> @endif </ul> </div> </td> </tr> @endforeach </tbody> </table> </div>
<div class="display-none-view" id="student_fee_report"> <table id="student_fee_report" class="table eTable"> <thead> <tr> <th>{{ get_phrase('Invoice No') }}</th> <th>{{ get_phrase('Student') }}</th> <th>{{ get_phrase('Class & Section') }}</th> <th>{{ get_phrase('Invoice Title') }}</th> <th>{{ get_phrase('Total Amount') }}</th> <th>{{ get_phrase('Created at') }}</th> <th>{{ get_phrase('Paid Amount') }}</th> <th>{{ get_phrase('Status') }}</th> </tr> </thead> <tbody> @foreach($invoices as $invoice) <?php $student_details = (new CommonController)->get_student_details_by_id($invoice['student_id']); ?> <tr> <td> {{ sprintf('%08d', $invoice['id']) }} </td> <td> {{ $student_details['name'] }} </td> <td> <small>{{ $student_details['class_name'] }}</small><br> <small>{{ $student_details['section_name'] }}</small> </td> <td> {{ $invoice['title'] }} </td> <td> {{ school_currency($invoice['total_amount']) }} </td> <td> <small>{{ date('d-M-Y', $invoice['timestamp']) }} </small> </td> <td> {{ school_currency($invoice['paid_amount']) }} </td> <td> <?php if (strtolower($invoice['status']) == 'unpaid'): ?> <span class="bg bg-danger">{{ ucfirst($invoice['status']) }}</span> <?php else: ?> <span class="bg bg-success">{{ ucfirst($invoice['status']) }}</span> <?php endif; ?> </td> </tr> @endforeach </tbody> </table> </div>
|