@extends('layouts.admin') @section('content')
{{ trans('global.log.title_singular') }} {{ trans('global.list') }}
@foreach($logs as $index => $log) @endforeach
S. No. User Name Action Body
{{ $index + 1 }} {{ $log->users->name ?? '' }} {{ $log->action ?? '' }} {{ is_array($log->data) ? json_encode($log->data) : $log->data ?? '' }}
@section('scripts') @parent @endsection @endsection