@extends('layouts.master') @section('title', 'Funding') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')
@yield('title')


@foreach($funding as $key=>$new_funding) @php $get_agency = FundingController::get_agency($new_funding->funding_id); @endphp @endforeach
No. Funding Name
{{ ++$key }} {{ $new_funding->funding_name }} @if(count($get_agency) >= 1)
    @foreach($get_agency as $new_agency)
  • {{ $new_agency->agency_name }}
  • @endforeach
@endif
@include('layouts.footer') @endsection