@extends('admin.layout.app') @section('more-head') @endsection @section('main-content')

OPERATIONS MANAGEMENT SYSTEM

GANG ATTENDANCE REPORT

@foreach ($gang_attendances as $gang_attendance) @endforeach
No. MEMBER NAME MEMBER NO. LSC PORT DATE CHECK-IN CHECK-OUT
{{ $count++ }}. {{ strtoupper($gang_attendance->gang_member->gang_member_name) }} {{ $gang_attendance->gang_member->gang_member_no }} {{ strtoupper($gang_attendance->gang->gang_name) }} {{ strtoupper($gang_attendance->port->name) }} {{ $gang_attendance->cur_date ? Carbon\Carbon::parse($gang_attendance->cur_date)->format('j M Y') : null }} {{ $gang_attendance->check_in ? Carbon\Carbon::parse($gang_attendance->check_in)->format('j M Y g:i a ') : null }} {{ $gang_attendance->check_out ? Carbon\Carbon::parse($gang_attendance->check_out)->format('j M Y g:i a ') : null }}
Showing {{ $gang_attendances->firstItem() }} to {{ $gang_attendances->lastItem() }} of total {{ $gang_attendances->total() }} entries {!! $gang_attendances->render() !!}
@endsection @section('more-scripts') @endsection