@extends('hrms.layouts.base') @section('content')
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif {!! Form::open(['class' => 'form-horizontal']) !!}
@foreach($promotions as $promotion) @endforeach {!! $promotions->render() !!}
Id Employee Old Designation New Designation Old Salary New Salary Date of Promotion
{{$i+=1}} {{$promotion->ed_firstName}} {{$promotion->old_designation}} {{$promotion->new_designation}} {{$promotion->old_salary}} {{$promotion->new_salary}} {{getFormattedDate($promotion->date_of_promotion)}}
{!! Form::close() !!}
@endsection