@include('Partials.sidebar')
@include('Partials.header')

Brochures

  1. Brochures
{{-- Flash Messages --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- ── Upload cards ── --}}
{{-- Single upload --}}
Upload Single Brochure
PDF only — up to 500MB
@csrf
{{-- Bulk upload --}}
Bulk Upload Brochures
Upload multiple PDFs at once — up to 500MB each
{{-- ── Brochures Table ─────────────────────────── --}}
All Brochures {{ $brochures->count() }}
@forelse($brochures as $i => $brochure) @empty @endforelse
# Project Title Preview Filename Added Actions
{{ $i + 1 }} {{ $brochure->projects->project_name ?? '—' }} {{ $brochure->title ?? '—' }} View {{ $brochure->brochure_file }} {{ $brochure->created_at->format('d M Y') }}
@csrf @method('DELETE')
No brochures uploaded yet.
@include('Partials.footer')