G
a
i
n
u
p
@section('tittle') {{"LEAVE APPROVE"}}@endsection
@extends('LifeAtGainup.Navbar.nav') @section('content')
@php $loginNAME = Session::get('emp_name') @endphp
{{$loginNAME}}
10
50
70
100
Show ALL Rows
@csrf
SNO
TNO
Name
From Date
To Date
Total Days
Reason
Remark
@foreach($result as $index => $row)
{{ $index + 1 }}
{{ $row['Tno'] }}
{{ $row['Name'] }}
{{ $row['Fromdate'] }}
{{ $row['Todate'] }}
{{ $row['Leave_Count'] }}
{{ $row['Reason'] }}
{{ $row['Remark'] }}
@endforeach
Total entries:
@if ($message = Session::get('success'))
{{$message}}
@endif @if ($message = Session::get('alert'))
{{$message}}
@endif @endsection