@extends('layouts.app') @section('content') @php function formatPath($path) { return str_replace(['/', ' '], ['-', ''], $path); } function extractFileName($filePath) { $fileNameWithExtension = basename($filePath); $fileName = pathinfo($fileNameWithExtension, PATHINFO_FILENAME); return $fileName; } @endphp
@endsection