@extends('dashboard.layout.master') @section('content')
@include('dashboard.layout.navbar')
@foreach($logs as $item) @php $formattedDate = date('d-m-Y', strtotime($item->created_at)); $formattedTime = date('H:i:s', strtotime($item->created_at)); @endphp @endforeach
S no Action Section Activity Date Time
{{$loop->index + 1}} {{$item->action ?? 'not available'}} {{$item->section ?? 'not available'}} {{$item->name}} {{$item->activity}} {{$formattedDate}} {{$formattedTime}}
@if(session('error')) @endif @if(session('success')) @endif @endsection