laravel

Laravel Custom Package Problem Call to undefined method


I am trying to create my custom package for laravel. There is my code, https://github.com/onurzdgn/cloudflare-image-api I have an problem when I using my project this package. The error is: Call to undefined method onurozdogan\CloudflareImageApi\Facades\CloudflareImageApi::upload() I thing I check everything, however I can’t find anything.


Solution

  • The issue is in CloudflareImageApiServiceProvider for this line:

    $this->app->bind('cloudflare_image_api', CloudflareImageApi::class);
    

    You have imported Facade class,

    use onurozdogan\CloudflareImageApi\Facades\CloudflareImageApi;
    

    remove this line or import:

    use onurozdogan\CloudflareImageApi\CloudflareImageApi;