@extends('layouts.master-vnext') @section('page-title') Manage sss loans @endsection @section('content')
{{ Form::customSelect('employee', $employees, Request::input('employee'), ['placeholder' => 'Please choose ...', 'class' => 'form-control improved-select', 'style' => 'width: 200px']) }}
@foreach($loans as $loan) @endforeach
Name Start date End date Total per Payday Missing
{{ $loan->employee->displayName }} @date($loan->loan_start_date, 'Y-m-d') @date($loan->loan_end_date, 'Y-m-d') @currency($loan->amount_total) {{ $defaultCurrency->symbol }} @currency($loan->amount_per_day) {{ $defaultCurrency->symbol }} @currency($loan->amount_missing) {{ $defaultCurrency->symbol }} edit
{!! csrf_field() !!} {!! method_field('DELETE') !!}
@endsection