@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'SYSTEMLOGS') @section('content_header_title', 'SYSTEMLOGS') @section('content_header_subtitle', 'LIST') {{-- Content body: main page content --}} @section('content_body')

SYSTEMLOGS

{{html()->form('GET', route('position.index'))->open()}}
{{html()->text('search', $search)->class('form-control')->placeholder('Search')}}
{{html()->form()->close()}}
@foreach($activities as $activity) @endforeach
LOG NAME DESCRIPTION USER CHANGES TIMESTAMP
{{$activity->log_name}} {{$activity->description}} {{$activity->causer->name}} @if($activity->log_name == 'update' && !empty($updates[$activity->id]))
    @foreach($updates[$activity->id] as $column => $data)
  • {{$column}}: {{$data['old']}}

    to: {{$data['new']}}

  • @endforeach
@endif
{{date('F j, Y H:i:s a', strtotime($activity->created_at))}}
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush