@extends('layouts.default') @section('meta') Reports | Workday Time Clock @endsection @section('styles') @endsection @section('content')

{{ __("Employee Leaves Report") }} {{ __("Return") }}

@csrf
@isset($empLeaves) @foreach ($empLeaves as $v) @endforeach @endisset
{{ __("Employee Name") }} {{ __("Type") }} {{ __("Leave from") }} (date) {{ __("Leave to") }} (date) {{ __("Reason") }} {{ __("Status") }}
{{ $v->employee }} {{ $v->type }} {{ $v->leavefrom }} {{ $v->leaveto }} {{ $v->reason }} {{ $v->status }}
@endsection @section('scripts') @endsection