@php $title = 'Card View'; $settings = \App\Models\Settings::first(); @endphp @section('title') {{$title}} @endsection @extends('layout') @section('main-content')
@foreach($teams as $team)
{{$team['name']}} (Total Employees : {{$team['totalEmployees']}})
@if(!$team['cardItems'])

No checkins!

@else @foreach($team['cardItems'] as $cardItem)
KP

{{$cardItem['name']}}

{{$settings->phone_country_code}} -{{$cardItem['phoneNumber']}}

  • Attendance: IN {{$cardItem['attendanceInAt']}}

    Timeline
  • Location

  • Last updated on

    Team : {{$team['name']}}

    Today's visits: {{$cardItem['visitsCount']}}

@endforeach @endif
@endforeach
@endsection @section('scripts') @endsection