@extends('adminlte::page')
@section('title_postfix', ' - Primke')
@section('content')
| ID |
Datum |
Korisnik |
|
@foreach($tableModel as $item)
| {{ $item->id }} |
{{ $item->created_at->format('d.m.Y. H:i') }} |
{{ $item->user->name }} |
|
@endforeach
@stop
@section('js')
@stop