我是laravel框架的新手,我想顯示存儲在存儲文件夾中的圖像。我想這從存儲laravel顯示圖像5.3
路線
Route::get('/userimage/{filename}', [
'uses' =>'[email protected]',
'as' => 'account.image',
]);
刀片文件,以便獲得url並顯示圖像
</section>
@if (Storage::disk('public')->has($user->first_name . '-' . $user->id . '.jpg'))
<section class="row new-post">
<div class="col-md-6 col-md-offset-3">
<img src="{{ route('account.image', ['filename' => $user->first_name . '-' . $user->id . '.jpg']) }}" alt="" class="img-responsive">
</div>
</section>
控制器
public function getUserImage($filename)
{
$file = Storage::disk('public')->get($filename);
return new Response($file,200);
}
我如何使用上面的代碼顯示圖像?
我今天早些時候回答了類似的問題。你可以使用[相同的方法](http://stackoverflow.com/a/41972141/3918473)。 – Gayan