@extends('layouts.admin')
@section('title', 'Download Center')
@section('page-title', 'Download Center')
@section('content')
Operations / Download Center
| Document Details |
Category |
Date Uploaded |
Action |
@forelse($downloads as $dl)
{{ $dl->title }}
{{ $dl->description }}
|
{{ $dl->category }} |
{{ $dl->created_at->format('d M Y') }} |
|
@empty
| No documents uploaded for download. |
@endforelse
@endsection