2023-01-31 03:45:40.373 UTC Info w3wp.108 ThreadEntry ThreadHelper.ThreadStart
2023-01-31 03:45:40.389 UTC Info w3wp.110 ThreadEntry ThreadHelper.ThreadStart
2023-01-31 03:45:40.405 UTC Info w3wp.108 SusEventDispatcher.DispatchManagerWorkerThreadProc DispatchManager Worker Thread Processing NotificationEvent: ConfigurationChange
2023-01-31 03:45:40.420 UTC Info w3wp.110 SusEventDispatcher.DispatchManagerWorkerThreadProc DispatchManager Worker Thread Processing NotificationEvent: ConfigurationChange
2023-01-31 03:45:40.452 UTC Info w3wp.110 ChangeNotificationDispatcher.InternalEventHandler Get event ConfigurationChange from dispatchmanager
2023-01-31 03:45:40.467 UTC Info w3wp.108 AuthorizationManager.GetUpstreamServerUriHeader Found config says USS is MU site
2023-01-31 03:45:40.467 UTC Info w3wp.21 Client.OnConfigurationChange Creating a new ClientImplementation because the DB configuration changed
2023-01-31 03:45:40.498 UTC Info w3wp.21 ClientImplementation..ctor Initializing ClientWebService ProcessID = 5848, Process Start Time = 31.01.2023 8:52:39, Product Version = 10.0.17763.2931
2023-01-31 03:45:40.530 UTC Info w3wp.21 AuthorizationManager.GetUpstreamServerUriHeader Found config says USS is MU site
2023-01-31 03:46:07.155 UTC Info w3wp.213 ThreadEntry TimerQueue.FireNextTimers
2023-01-31 03:46:07.171 UTC Info w3wp.213 ServerImplementation.UpdateCache Database change occured; check if we need to update cache.
2023-01-31 03:47:11.952 UTC Info w3wp.142 ThreadEntry ThreadPoolWorkQueue.Dispatch
2023-01-31 03:47:11.968 UTC Warning w3wp.142 SoapUtilities.CreateException ThrowException: actor = http://wsus.server:8530/ClientWebService/client.asmx, ID=38e226f1-9ae5-48e1-ae35-b63e59c19d0a, ErrorCode=ConfigChanged, Message=, Client=300d738f-5f6d-44c6-953b-ac151945f8cc
2023-01-31 03:49:33.454 UTC Info w3wp.160 ThreadEntry ThreadPoolWorkQueue.Dispatch
2023-01-31 03:49:33.469 UTC Warning w3wp.160 SoapUtilities.CreateException ThrowException: actor = http://wsus.server:8530/ClientWebService/client.asmx, ID=e0e7e528-f6f7-462d-acbf-b99157cbc63d, ErrorCode=ConfigChanged, Message=, Client=70236756-106c-4182-ba31-4148a063dccd
@isset($books_list)
@foreach ($books_list as $item)
<tr>
<td>{{ $i++ }}</td>
<td>{!! $delimiter ?? "" !!} {{ $item->title }}</td>
<td>{{ $item->slug }}</td>
<td class="text-center" style="width: 30px;">
<div class="btn-group-sm">
<form action="{{ route('admin.category.destroy', [ 'category' => $item->id ])}}" method="post"
style="display: flex;">
<a href="{{ route('admin.category.edit',$item->id ) }}" class="btn-sm btn-success"
role="button"> <i class="fas fa-edit"></i></a>
@csrf
@method('DELETE')
<button class="btn-sm btn-danger" type="submit" style="margin-left: .5rem;">
<i class='fas fa-trash-alt'></i>
</button>
</form>
</div>
</td>
</tr>
@if (count($item->children) > 0)
@include('admin.book_categories.partials.table', [
'books_list' => $item->children,
'delimiter' => ' - ' . $delimiter,
'i'=>$i++
])
@endif
@endforeach
@endisset