Skip to content

Instantly share code, notes, and snippets.

@lucenarenato
Created August 5, 2024 19:51
Show Gist options
  • Save lucenarenato/b1deb0d232a4cfbc21eec7d3d6981991 to your computer and use it in GitHub Desktop.
Save lucenarenato/b1deb0d232a4cfbc21eec7d3d6981991 to your computer and use it in GitHub Desktop.
ExampleGetImageUrl
protected $appends = ['image_url'];

    public function getImageUrlAttribute()
    {
        if (is_null($this->picture) || empty($this->picture)) {  // Check if $this->image is null
            return url('/images/sqlogo.png'); // Return default URL if null
        }
        $imageData = json_decode($this->picture, true); // Cast to array for access
        if ($imageData && isset($imageData['url']) && ! empty($imageData['url'])) {  // Check for non-empty URL
            $url = $imageData['url'];

            // If it starts with "/storage" then it's a local file and we need to resolve the path
            if (strpos($url, '/storage') === 0) {
                //                dd($url);
                // But first remove the /storage at the beginning
                $url = substr($url, 9);

                return url(Storage::url($url));
            } else {
                return $url;

            }

            //            return $imageData['url'];
        }

        return url('/images/sqlogo.png'); // Return default URL if no image data or empty URL
    }
    ```
    OR
    ```php
    protected $appends = [
        'image_url'
    ];

    public function getImageUrlAttribute()
    {
        return Storage::disk('ocean_public')->url($this->image);
    }
    ```
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment