@extends('layouts.master') @section('page-title'){{ __('Modify Log') }}@endsection @section('menu'){{ __('Admin') }}@endsection @section('sub-menu'){{ __('Modify Log') }}@endsection @section('content') @if (!empty($logs)) @foreach ($logs as $k => $row) @endforeach @endif
{{ __('ID') }} {{ __('Date') }} {{ __('Who') }} {{ __('Description') }} {{ __('Action') }} {{ __('Object Type') }} {{ __('Object ID') }} {{ __('Game ID') }}
{{ $row->id }} {{ $row->datetime }} {{ $row->username }} {{ $row->description }} {{ $row->action }} {{ $row->object_type }} {{ $row->object_id }} {{ $row->internal_game_id }}
@endsection