@extends('layouts.public') @section('title', __('Downloads & Resources')) @section('meta_description', __('Company profile, project reports, policies, circulars and tender documents available for download.')) @section('content')
@if ($downloads->isEmpty()) @else
    @foreach ($downloads as $download)
  • {{ $download->title }}

    @if ($download->description)

    {{ $download->description }}

    @endif

    @if ($download->category) {{ $download->category->name }} @endif {{ Str::upper((string) $download->file_type) }} {{ $download->sizeLabel() }} @if ($download->published_at) {{ $download->published_at->format('d M Y') }} @endif

    {{ __('Download') }}
  • @endforeach
@if ($downloads->hasPages())
{{ $downloads->links() }}
@endif @endif
@endsection