@extends('layouts.app') @section('title', __('Logs')) @section('sidebar') @include('partials/sidebar_menu_toggle')
@endsection @section('content'){{ App\ActivityLog::formatColTitle($col) }} | @endforeach
---|
@if (isset($row[$col])) @if ($col == 'user' || $col == 'customer') {{ $row[$col]->getFullName(true) }} @elseif ($col == 'date') {{ App\User::dateFormat(new Illuminate\Support\Carbon($row[$col]), 'M j, H:i:s') }} @elseif (is_object($row[$col]) && get_class($row[$col]) == 'App\Thread') #{{ $row[$col]->conversation->number }} @else {{ $row[$col] }} @endif @else @endif | @endforeach