@extends('layouts.app') @push('css') @endpush @section('content')

Attendance

@foreach ($attendances as $key=>$attendance) @if($attendance->batch_id) @else @endif @endforeach
Roll Batch Name Status Present Abset Late Created At Action
{{ $key+1 }}{{ $attendance->batch->name }}N/A status==1) class="green" @endif>P status==0) class="red" @endif>A status==2) class="yellow" @endif>L {{ $attendance->created_at->diffForHumans() }} @can('attendance.edit') Edit @endcan @can('attendance.destroy')
@csrf @method('DELETE')
@endcan
@endsection @push('js') @endpush