@extends('layouts.app')
@section('pageTitle', 'Dokumen - List')
@section('content')
@include('notify')
Folder |
Akses |
Last Update |
|
@if(!empty($document))
@foreach($document as $post)
{{$post->name}} |
@php $j =1; $total_user = $post->total; @endphp
@foreach($post->user as $val)
{{$val->nama_user}}
@if($j++ < $total_user), @endif
@endforeach
|
{{date('d M y H:i', strtotime($post->created))}} |
|
@endforeach
@else
Belum ada data |
@endif
{!! $metadata->pagination !!} |
@endsection
@section('custom_js')
@endsection