@extends('layouts/acc_layout') @section('title', '| Auto Voucher Configuration') @section('content')
@if(session()->has('successMsg'))

{{ session()->get('successMsg') }}

@endif

Pos Auto Voucher Configuration

{{ csrf_field() }} @foreach($transportVoucherConfig as $transportVoucherConfig) @endforeach
SL No. Project Name Project Type name Ledger Name Actions
{{++$no}} @php echo DB::table('gnr_project')->where('id',$transportVoucherConfig->project_id)->value('name'); @endphp @php echo DB::table('gnr_project_type')->where('id',$transportVoucherConfig->project_type_id)->value('name'); @endphp @php echo DB::table('acc_account_ledger')->where('id',$transportVoucherConfig->ledger_code_id)->value('name'); @endphp  
@endsection