@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title])
{{ $title }}
@foreach ($transferLists as $index => $item) @endforeach
S.N Employee Department From Department To Transfer Date Action
{{ $index + 1 }} {{ $item->employee_id }} {{ $item->old_department_id }} {{ $item->new_department_id }} {{ $item->transfer_date }}
@endsection