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

{{ __("User Accounts Report") }} {{ __("Export to CSV") }} {{ __("Return") }}

@isset($userAccs) @foreach ($userAccs as $v) @endforeach @endisset
{{ __("Employee Name") }} {{ __("Email") }} {{ __("Account Type") }} {{ __("Status") }}
{{ $v->name }} {{ $v->email }} @if( $v->acc_type == 2) Admin @else Employee @endif @if($v->status == 1) Active @endif @if($v->status == 0) Disabled @endif
@endsection @section('scripts') @endsection