@extends('layouts.app') @section('content') @php if (!function_exists('isPDF')) { function isPDF($filePath) { $extension = pathinfo($filePath, PATHINFO_EXTENSION); $extension = strtolower($extension); return $extension === 'pdf' || $extension == 'PDF'; } } @endphp
@endsection