You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added the image in the database using spatie media library, it successfully added but when I am retrieving this image none of image is displaying in the view, no error comes even my path is also accurate.
My Model Structure
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Spatie\MediaLibrary\HasMedia;
use Spatie\MediaLibrary\InteractsWithMedia;
use Spatie\MediaLibrary\HasMedia\Interfaces\HasMediaConversions;
class Profile extends Model implements HasMedia
{
use InteractsWithMedia;
protected $fillable = ['user_id','avatar'];
public function getAvatarAttribute()
{
return $this->getMedia('images')->last();
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I added the image in the database using spatie media library, it successfully added but when I am retrieving this image none of image is displaying in the view, no error comes even my path is also accurate.
My Model Structure
My Blade
My Controller code
My path in the file-system.php
Dir structure is
URL is generated in View is
Path is correct but image is not loading, please tell me why this is happeing.
Beta Was this translation helpful? Give feedback.
All reactions