@extends('layouts.vertical', ['subtitle' => $title]) @section('content') @include('layouts.partials.page-title', ['title' => 'Data', 'subtitle' => 'PBG'])
{{ $title }}

Document Number: {{ $pbg->document_number }}

@php $extension = strtolower(pathinfo($data->file_name, PATHINFO_EXTENSION)); @endphp @if (in_array($extension, ['jpg', 'jpeg', 'png']))
{{ $data->file_name }}
@elseif ($extension === 'pdf') @else
Unsupported file type: {{ $extension }}
@endif
@endsection