| # |
{{__('messages.created_by')}} |
{{__('messages.title or name')}} |
{{__('messages.event')}} |
{{__('messages.created_at')}} |
{{__('messages.show')}} |
@if(!empty($activity))
@foreach($activity as $arc)
| {{$loop->iteration}} |
{{$arc->causer->name ?? '' }}
@if($arc->causer_type == "projects")
{{' - '.$arc->causer->hse_manager_name}}
@elseif($arc->causer_type == "branch")
@endif
|
@if(in_array($inlog,["projectForm","projectFixed"]))
{{$arc->subject->form ? $arc->subject->form->name : '' }} |
@elseif($inlog == "notification")
{{$arc->subject->text ?? '' }} |
@elseif($inlog == "Page")
{{$arc->subject->title ?? '' }} |
@else
{{$arc->subject->name ?? '' }} |
@endif
{{$arc->description}} |
{{$arc->created_at}} |
|
@endforeach
@endif
@if($activity != null)
{!! $activity->withQueryString()->links('pagination::bootstrap-4') ?? '' !!}
@endif