@extends('Admin.master_layout.master') @section('title', getTitleInPage()) @section('header_menu') @parent @endsection @section('sidebar_menu') @parent @endsection @section('content')

{{ getTitleInPage() }} - View


@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if (Session::has('error'))
{!! Session::get('error') !!}
@endif @if (Session::has('success'))
{!! Session::get('success') !!}
@endif
{{ getTitleInPage() }} - View

{{ $transaction_type->name }}

Amount : {{ $order->amount }}
Date Of Expense : {{ changeDateFormate($order->date) }}
Payment Mode : {{ getPaymentModeName($order->payment_mode) }}

@if(count($OrderItems) > 0) @foreach($OrderItems as $key => $item) @endforeach @endif
Item Dr A/c Head Cr A/c Head Amount Attach Files
{{ getItemListTitle($item['item_id']) }} @if($item['dr_type'] == 'account_group_head') {{ str_replace('Branch', getMechantShortCode($order->merchant_id).'-'.getBranchCode($order->merchant_id), getAccountHeadById($item['dr_account_head']))}} @elseif($item['dr_type'] == 'agent_rahebar') {{ getRahebarName($item['dr_account_head']) }} @else {{ getAccountHeadById($item['dr_account_head']) }} @endif @if($item['cr_type'] == 'account_group_head') {{ str_replace('Branch', getMechantShortCode($order->merchant_id).'-'.getBranchCode($order->merchant_id), getAccountHeadById($item['cr_account_head']))}} @elseif($item['cr_type'] == 'agent_rahebar') {{ getRahebarName($item['cr_account_head']) }} @else {{ getAccountHeadById($item['cr_account_head']) }} @endif {{ $item['amount'] }} @if($item['invoice_file'] != null) @if($key == 0) @else @endif @endif

@if(!empty($OrderItems) && $OrderItems[0]['invoice_file'] !== null) @endif


@if($order->remark_maker != '' || $order->remark_maker != 0) @endif

Status*:

Maker Remark :

Remark*:

@if(!empty($previous)) Previous @endif @if(!empty($next)) @endif Cancel @if(!empty($next)) Next @endif
@endsection @section('footer') @parent @endsection @section('extraa_script_and_js') @parent @endsection