Thats is how im trying to use the thumbnail and im getting this error "Source is not allowed. Given path "/storage/profile/Wr1R7o9gKf1R0mPtfhbEhP98RJezuKz0RfOVG0wS.jpg"" someone know i can solve this
@AlessioLibbi I think you need to give you folder name other wise generate php artisan storage:link
using create symbolic link and access Image from public folder.
@AlessioLibbi Then give a proper path like a asset('/storage/folder_name/img_name') or using a public_path('/storage/folder_name/img_name') or storage_path('/storage/folder_name/img_name').
@testuser98
before I started implementing thumbnails I used this
->
img src="{{ asset('storage/' . $user->picture) }}" alt="picture"
class="w-100 rounded-circle"
ok iv solved the problem i was missing to use "url()" after "Thumbnail::src(asset('storage/' . $user->picture), 'public' )->crop(64, 64)" so i was returning not a string but a thumbnail object with that in it works