@extends('hrms.layouts.base') @section('content')
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif {!! Form::open(['class' => 'form-horizontal']) !!}
@foreach($assigns as $assign) @endforeach {!! $assigns->render() !!}
Id Employee Award Date Reason Actions
{{$i+=1}} {{$assign->employee_id}} {{$assign->award_id}} {{getFormattedDate($assign->date)}} {{$assign->reason}}
{!! Form::close() !!}
@endsection