![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/inventory.corals.io/Corals/modules/Inventory/resources/views/ |
@extends('layouts.crud.show') @section('content_header') @component('components.content_header') @slot('page_title') {{ $title_singular }} @endslot @slot('breadcrumb') {{ Breadcrumbs::render('inventory-dashboards-show') }} @endslot @endcomponent @endsection @section('content') @include('Inventory::partials.DateForm') <div class="row"> <div class="col-md-12"> @component('components.box') @slot('box_title') @lang('Inventory::attributes.cheque.expenses_cheque_details') @endslot <div class="table-responsive"> <table class="table color-table info-table table table-hover table-striped table-condensed"> <thead> <tr> <th>@lang('Inventory::attributes.cheque.transaction_code')</th> <th>@lang('Inventory::attributes.cheque.paid_amount')</th> <th>@lang('Inventory::attributes.cheque.status')</th> <th>@lang('Inventory::attributes.cheque.supplier')</th> <th>@lang('Inventory::attributes.cheque.reference')</th> <th>@lang('Inventory::attributes.cheque.bank_name')</th> <th>@lang('Inventory::attributes.cheque.cheque_owner')</th> <th>@lang('Inventory::attributes.cheque.cheque_name')</th> <th>@lang('Inventory::attributes.cheque.cheque_number')</th> <th>@lang('Inventory::attributes.cheque.cheque_date')</th> </tr> </thead> <tbody> @forelse(\ChequeFacade::expensesCheque() as $order) <tr> <td>{!! $order->present('number')!!}</td> <td>{!! $order->present('code')!!}</td> <td>{{ $order->present('amount')}}</td> <td>{!!$order->present('status')!!}</td> <td>{{ $order->present('name')}}</td> <td>{{ $order->present('reference')}}</td> <td>{{ $order->getProperty('payment_details.bank_name')}}</td> <td>{{ $order->getProperty('payment_details.cheque_owner')}}</td> <td>{{ $order->getProperty('payment_details.cheque_name')}}</td> <td>{{ $order->getProperty('payment_details.cheque_number')}}</td> <td>{{ $order->getProperty('payment_details.cheque_date')}}</td> </tr> @empty <tr> <td colspan="12"> @lang('Inventory::labels.no_data') </td> </tr> @endforelse </tbody> </table> </div> @endcomponent </div> </div> <div class="row"> <div class="col-md-12"> @component('components.box') @slot('box_title') @lang('Inventory::attributes.cheque.order_revenues_cheque_details') @endslot <div class="table-responsive"> <table class="table color-table info-table table table-hover table-striped table-condensed"> <thead> <tr> <th>@lang('Inventory::attributes.cheque.order_number')</th> <th>@lang('Inventory::attributes.cheque.transaction_code')</th> <th>@lang('Inventory::attributes.cheque.paid_amount')</th> <th>@lang('Inventory::attributes.cheque.status')</th> <th>@lang('Inventory::attributes.cheque.customer')</th> <th>@lang('Inventory::attributes.cheque.reference')</th> <th>@lang('Inventory::attributes.cheque.bank_name')</th> <th>@lang('Inventory::attributes.cheque.cheque_owner')</th> <th>@lang('Inventory::attributes.cheque.cheque_name')</th> <th>@lang('Inventory::attributes.cheque.cheque_number')</th> <th>@lang('Inventory::attributes.cheque.cheque_date')</th> </tr> </thead> <tbody> @forelse(\ChequeFacade::orderRevenueCheque() as $order) <tr> <td>{!! $order->present('number')!!}</td> <td>{!! $order->present('code')!!}</td> <td>{{ $order->present('amount')}}</td> <td>{!!$order->present('status')!!}</td> <td>{{ $order->present('name')}}</td> <td>{{ $order->present('reference')}}</td> <td>{{ $order->getProperty('payment_details.bank_name')}}</td> <td>{{ $order->getProperty('payment_details.cheque_owner')}}</td> <td>{{ $order->getProperty('payment_details.cheque_name')}}</td> <td>{{ $order->getProperty('payment_details.cheque_number')}}</td> <td>{{ $order->getProperty('payment_details.cheque_date')}}</td> </tr> @empty <tr> <td colspan="12"> @lang('Inventory::labels.no_data') </td> </tr> @endforelse </tbody> </table> </div> @endcomponent </div> </div> @endsection