youtube-download-service/app/Http/Controllers/DownloadController.php
2024-06-17 17:44:56 +08:00

14 lines
266 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class DownloadController extends Controller
{
public function download($file_name) {
$file_path = public_path('/'.$file_name);
return response()->download($file_path);
}
}