@extends('back.layouts.main') @section('title' , 'Log') @section('content')
@foreach($activities as $activity) @endforeach
الاسم ID Action الداتا الجديدة الداتا القديمة الوقت
{{@$activity->causer->name}} {{@$activity->description}} {{ str_replace('App\Models\\','',$activity->subject_type)}}
{{ $activity->subject_id }}
@isset($activity->changes['attributes']) @foreach($activity->changes['attributes'] as $key=>$value) @continue(in_array($key , $ignored)) {{$key}}: @include('back.log._value') @endforeach @endif @isset($activity->changes['old']) @continue(in_array($key , $ignored)) @foreach($activity->changes['old'] as $key=>$value) {{$key}}: @include('back.log._value') @endforeach @endif {{@$activity->created_at}}
@stop @section('breadcrumbs') @stop