@extends('layouts.client') @section('content')
{{ $occType->name ?? 'Ocorrências' }}
@forelse($occurrences as $occ) @empty @endforelse
Título Registro Responsável Anexos
{{ Str::limit($occ->title ?? $occ->description ?? '', 30) }}

{{ Str::limit($occ->description, 80) }}

{{ $occ->created_at->format('d/m/Y H:i') }} {{ $occ->user->name ?? '-' }} {{ $occ->attachments->count() }} @php $btnClass = 'btn-primary'; if ($occ->status === 'closed') $btnClass = 'btn-danger'; if ($occ->status === 'open') $btnClass = 'btn-success'; @endphp
@csrf
Nenhuma ocorrência encontrada.
{{ $occurrences->links() }}
@endsection