{{ __('Downloadable Resources: ') }} {{ $project->name }}

@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif

Project Resources

@if($resources->isEmpty())

No Resources Available

There are no downloadable resources for this project yet.

@else
@foreach($resources as $resource)

{{ $resource->title }}

@if($resource->description)

{{ $resource->description }}

@endif

{{ number_format($resource->file_size / 1024, 1) }} KB · {{ $resource->created_at->format('M d, Y') }}

Download
@endforeach
@endif