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

{{__("Warehouse logs")}}

@foreach($history as $h) @endforeach
{{__("Serial")}} {{__("Device")}} {{__("Full name")}} {{__("Date of entry")}}
{{$h->serijski_broj}} {{$h->device}} {{$h->ime.' '.$h->prezime}} {{date('d.m.Y H:i:s', strtotime($h->created_at))}}
@endsection