@extends('layouts.admin') @section('content')

Seller ActivityLogs

Reset
@php $i = 0; @endphp @forelse ($activityLogs as $activityLog) @empty @endforelse
Sr.No User Name Actions Details Action
{{ ++$i }} {{ $activityLog->user->name }} {{ $activityLog->action }} {{ $activityLog->details }}
@csrf @method('DELETE')
no activity logs
{!! $activityLogs->withQueryString()->links('pagination::bootstrap-5') !!}
@endsection