@extends('contentNavbarLayout') @section('content')
| # | Record Type | Title | Description | Created At | File | Other Properties |
|---|---|---|---|---|---|---|
| {{ ($results->currentPage() - 1) * $results->perPage() + $loop->iteration }} | {{ $res->record_type }} | {{ $res->title ?? '-' }} | {{ $res->description ?? '-' }} | {{ $res->created_at ?? '-' }} | @if(!empty($res->file_path)) View @else No File @endif |
@foreach($res as $key => $value)
@if(!in_array($key, ['id', 'title', 'description', 'file_path', 'record_type', 'created_at', 'updated_at']) && !is_null($value))
{{ ucwords(str_replace('_', ' ', $key)) }}: {{ $value }} @endif @endforeach |