@extends('pdf.layout') @section('title', 'Audit Logs') @section('content') @foreach(array_chunk($auditLogs, 24) as $chunk)

National University

Gazipur-1704, Bangldesh

Audit Logs

{{--

({{ $chunk[0]['exam_code'] }}) {{ $chunk[0]['exam_name'] }} - {{ $chunk[0]['year'] }}

--}}
@foreach($chunk as $key => $item) @endforeach
SL Module Description Old Data New Data User Action Date
{{ ++$key }} {{ $item['module'] }} {{ $item['description'] }} {{ json_encode($item['old_value']) }} {{ json_encode($item['new_value']) }} {{ $item['user'] }} {{ $item['created_at'] }}

Generated On: {{ \Carbon\Carbon::now()->format('d/m/Y') }}

@endforeach @stop