Tôi có thể đề xuất một giải pháp, tức là:thiết lập trình tạo truy vấn để tìm tệp:
$query = DB::table('academic')->where('id',$id);
Giả sử file_path là trường giữ đường dẫn trong bảng của bạn
$files_to_delete = $query->pluck('file_path')->toArray(); //keeping the result in a php
$query->delete(); //now deleting
Storage::delete($files_to_delete);
Có nghĩa là nó tìm kiếm thư mục 'storage / app' để tìm tệp đó.