@extends('layouts/acc_layout') @section('title', '| View Opening Balance') @section('content') @include('successMsg')
Add Opening Balance

OPENING BALANCE

{{--

ACCOUNT TYPE

--}}
{{-- --}} {{ csrf_field() }} @foreach($openingBalances as $openingBalance) {{-- --}} @endforeach
SL#Fiscal YearOpening Date Project Branch Project Type Actions
{{++$no}} @php echo DB::table('gnr_fiscal_year')->where('id', $openingBalance->fiscalYearId)->value('name'); @endphp {{$openingBalance->openingDate}} @php echo DB::table('gnr_project')->where('id', $openingBalance->projectId)->value('name'); @endphp @php echo DB::table('gnr_branch')->where('id', $openingBalance->branchId)->value('name'); @endphp @php echo DB::table('gnr_project_type')->where('id', $openingBalance->projectTypeId)->value('name'); @endphp   {{-- --}}
@include('dataTableScript') @endsection {{-- --}}