@section('page_title') OSAA - Reimbursement @stop @section('page_sub_title') {{ $info['year'] }}-{{ substr(intval($info['year']) + 1, 2, 2) }} {{ $info['division'] }} {{ Helpers::getActivityName($info['activity']) }} Playoff Reimbursement @stop @section('scripts') @parent @stop @section('jquery_init') if(!window.console) { window.console = { log: $.noop, group: $.noop, groupEnd: $.noop }; } /* * Close button */ $('.close_button') .button({'icons':{'primary':'ui-icon-circle-arrow-w'}}) .css({'font-size':'9pt'}); /* * Bracket button */ $('.bracket_button') .button() .css({'font-size':'9pt', 'margin-right' : '10px'}); @stop @section('page_functions') View Bracket Back @stop @section('main_content') @foreach ($info['school_objects'] as $school_object)

{{ $school_object->school->name }}

@foreach ($school_object->installments as $installment) @endforeach
Round(s) Date(s) Location Miles Rate × Mileage # Part. Rate Per Diem Sub-Total
{{ $installment->round }} {{ count($installment->dates) }} ({{ implode(', ', $installment->dates) }}) {{ $installment->location }} {{ $installment->miles }} ${{ number_format($installment->mileage_rate, 2) }} {{ $installment->multiplier }} ${{ number_format($installment->mileage_payment, 2) }} {{ $installment->people }} ${{ number_format($installment->person_rate, 2) }} ${{ number_format($installment->people_payment, 2) }} ${{ number_format($installment->sub_total, 2) }}
{{ $school_object->school->short_name }}: ${{ number_format($school_object->total, 2) }}
@endforeach @stop