{!! Form::open([
'method'=>'DELETE',
'url' => ['admin/activitylogs', $activitylog->id],
'style' => 'display:inline'
]) !!}
{!! Form::button('
Delete', array(
'type' => 'submit',
'class' => 'btn btn-danger btn-sm',
'title' => 'Delete Activity',
'onclick'=>'return confirm("Confirm delete?")'
))!!}
{!! Form::close() !!}
ID | {{ $activitylog->id }} |
Activity | {{ $activitylog->description }} |
Actor |
@if ($activitylog->causer)
{{ $activitylog->causer->name }}
@else
-
@endif
|
Date | {{ $activitylog->created_at }} |