@extends('layouts/default') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Project Budgeting

@if(Session::has('message'))

{{ Session::get('message') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Project Budgeting List

@foreach($acctype as $journal) @endforeach @if (count($acctype) == 0) @endif
Job Code Job Name Total Projected Cost Total Projected Income
{{ $journal->jobcode }} {{ $journal->jobname }} {{ number_format($journal->total_cost,2) }} {{ number_format($journal->total_income,2) }}

No matching records found
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop