@extends('layouts.app') @section('title', 'Downloads & Resources - Lumbini Province Taekwondo Association') @section('content')

Documents & Downloads

@if($documents->count() > 0)
@foreach($documents as $doc)
@if(strtolower($doc->file_type) === 'pdf') @else @endif

{{ $doc->title }}

@if($doc->description)

{{ $doc->description }}

@endif
{{ $doc->created_at->format('M d, Y') }} {{ strtoupper($doc->file_type) }}
Download
@endforeach
@else

No downloadable documents published yet.

@endif
@endsection