@extends('layouts.template') @section('content')
@if(session('msg_success')) @endif @if(session('msg_update')) @endif @if(session('msg_delete')) @endif
{{ Form::open(['url' => 'memrecstatement', 'class' => 'form-horizontal', 'method' => 'post', 'files'=>true]) }}
{{ Form::label('to', 'TO', array('class' =>' col-sm-1 col-md-1 col-lg-1')) }}
{{ Form::submit('OK', array('class' => 'btn btn-success btn-sm')) }}
{{ Form::close() }} @if(isset($rec_stat)) @if(count($rec_stat)<=0) @else @foreach($rec_stat as $value) @endforeach
SL Com code Date Voucher Number Reference Number Amount Remarks Actions
{{ $sl++}} {{ $value-> comcode}} {{ $value-> vou_date}} {{ $value-> vou_num}} {{ $value-> ref_no}} {{ $value->transection}} {{ $value->narration}}
@endif @endif

@stop