在 laravel 中,我正在制作一个上传文件的应用程序,用户可以检索相同的文件。
但是每次我点击上传我都会收到这个错误。
FileNotFoundException in FilesystemAdapter.php line 91:
/storage/ap/payments/98AcresResort_25.pdf
我的控制器代码是这样的:
$filePath = "/storage/ap/payments/".$payment->payment_image;
$file = storage::disk('public')->get($filePath);
我的文件位于/public/storage/ap/payments/filename.pdf
我试过了php artisan storage:link
任何人都可以提出任何解决方案吗?