Skip to content

Instantly share code, notes, and snippets.

@rummykhan
Last active April 8, 2021 20:35
Show Gist options
  • Save rummykhan/3bb73187df5d81c6489c9c71dfa9f677 to your computer and use it in GitHub Desktop.
Save rummykhan/3bb73187df5d81c6489c9c71dfa9f677 to your computer and use it in GitHub Desktop.
Generic Image Aware Interface
<?php
namespace App\Models\ImageAware;
interface ImageAwareInterface
{
public function saveImage($file, $attribute = 'image', $disk = 'local');
public function getImageUrl($attribute = 'image', $default = null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment