@extends('admin.layout.master') @section('content') @include('flash-message')
{{ __('obs.employee') }} {{ __('obs.promotion') }} {{ __('obs.list') }}
@foreach ($promotions as $promotion) @endforeach
{{__('obs.sl')}} {{__('obs.name')}} {{__('obs.code')}} {{__('obs.department')}} {{__('obs.promotion')}} {{__('obs.type')}} {{__('obs.date')}} {{__('obs.action')}}
{{ $loop->iteration ++}} {{ $promotion->employee->emp_name ?? null }} {{ $promotion->employee->emp_code ?? null}} {{ $promotion->employee->fetch_department->name ?? null }} @if ($promotion->promotion_type == 1) {{ __('obs.designation') }} @elseif($promotion->promotion_type == 2) {{ __('obs.salary') }} {{ __('obs.increment') }} @elseif($promotion->promotion_type == 3) {{ __('obs.promotion') }} @endif {{ $promotion->date ? date('d-m-Y', strtotime($promotion->date)) : '' }}
@endsection @section('script') @endsection