@extends('layouts.app') @section('content')
{{csrf_field()}}

{{__("Goods in warehouse")}} ({{count($roba_magacin)}})

@foreach($roba_magacin as $br=>$roba) @endforeach
{{__("No.")}} {{__("Serial")}} {{__("Device")}} {{__("Storekeeper")}} {{__("Warehouse")}} {{__("Provider")}} {{__("Invoice number")}} {{__("Device state")}} {{__("Created at")}}
{{($br+1).'.'}} {{$roba->serijski_broj}} {{$roba->uredjaj}} {{$roba->magacioner_ime.' '.$roba->magacioner_prezime}} {{$roba->magacin}} {{$roba->provider}} {{$roba->invoice_number}} {{$roba->state}} @if($roba->created_at){{date('d.m.Y.', strtotime($roba->created_at))}}@endif
@endsection