@extends('apex-layouts.main') @section('content')
Activity Logs

Total Activity Logs: {{ $activityLogs->total() }}

@foreach($activityLogs as $activityLog) @endforeach
# log_name type subject_id subject_type change by properties
{{$activityLog->id}} {{$activityLog->log_name}} {{$activityLog->description}}

{{\App\helpers\ViewCommonHelper::getDateFormat($activityLog->created_at,1)}}

{{$activityLog->subject_id}} {{$activityLog->subject_type}} {{$activityLog->causedByName}} {{$activityLog->properties}}
@if($activityLogs->total() > $activityLogs->perPage()) @endif
@endsection @section('styles') @stop