@section('title', $title) @section('description', $description) @extends('layout.app') @section('content')
@foreach($imagesOrfiles as $file) @php $filePath = asset($folderUrl . '/' . basename($file)); $fileExtension = pathinfo($file, PATHINFO_EXTENSION); $imageExtensions = ['jpg', 'jpeg', 'png', 'gif', 'webp']; $isImage = in_array(strtolower($fileExtension), $imageExtensions); @endphp
@if($isImage) Image @else
File
@endif 📥 Download
@endforeach
@endsection