@extends('backend.layouts.app') @section('page-title', trans('app.activity_log')) @section('page-heading', trans('app.activity_log')) @section('content')
@include('backend.partials.messages')

@lang('app.filter')

@lang('app.activity_log')

@if (isset($adminView)) @endif @if (count($activities)) @foreach ($activities as $activity) @if (isset($adminView)) @endif @endforeach @else @endif @if (isset($adminView)) @endif
@lang('app.user')@lang('app.message') @lang('app.log_time') @lang('app.more_info')
@if (isset($user)) {{ $activity->user->username }} @else {{ $activity->user->username }} @endif @if ($activity->old) @lang('app.after'):
@endif {{ $activity->description }} @if ($activity->old)
@lang('app.before'):
{{ $activity->old }} @endif
{{ date(config('app.date_time_format'), strtotime($activity->created_at)) }} @lang('app.country'): {{ $activity->country }}
@lang('app.city'): {{ $activity->city }}
@lang('app.os'): {{ $activity->os }}
@lang('app.device'): {{ $activity->device }}
@lang('app.browser'): {{ $activity->browser }}
@lang('app.ip'): {{ $activity->ip_address }}
@lang('app.user_agent'): {{ $activity->user_agent }}
@lang('app.no_data')
@lang('app.user')@lang('app.message') @lang('app.log_time') @lang('app.more_info')
{{ $activities->links() }}
@stop @section('scripts') @stop