@extends('layouts.app') @section('title', 'Resource Usage Report') @section('page-title', 'Resource Usage Report') @section('breadcrumb', 'Reports / Resource Usage') @section('content')
@if($downloads->count())
@foreach($downloads as $download) @endforeach
Resource Learner Downloads Last Accessed Category
{{ $download->resource?->title ?? '—' }} {{ $download->user?->name ?? 'Guest' }} 1 {{ $download->created_at->format('M d, Y H:i') }} {{ $download->resource?->category?->name ?? '—' }}
{{ $downloads->links() }}
@else @endif
@endsection