@extends('layouts.app') @section('content')

{{__("Logs")}}

@foreach($logs as $rbr => $w) @endforeach
{{__("No.")}} {{__("Worker")}} {{__("Accommodation unit")}} {{__("Change type")}} {{__("Updated by")}} {{__("Updated at")}}
{{($rbr+1).'.'}} @if($w->worker){{$w->worker->ime.' '.$w->worker->prezime}}@endif @if($w->accommodation) {{$w->accommodation->location.', '.$w->accommodation->address}} @endif @if($w->address_change){{__("Workers on address")}}@else{{__("Accommodation")}}@endif @if($w->user){{$w->user->ime.' '.$w->user->prezime}}@endif {{date('d.m.Y. H:i:s', strtotime($w->created_at))}}
@endsection