skip to Main Content

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 onurozdoganCloudflareImageApiFacadesCloudflareImageApi::upload() I thing I check everything, however I can’t find anything.

2

Answers


  1. Chosen as BEST ANSWER

    I found the problem. Problem coming use onurozdoganCloudflareImageApiFacadesCloudflareImageApi from CloudflareImageApiServiceProvider When I delete use problem fixed


  2. The issue is in CloudflareImageApiServiceProvider for this line

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

    you have imported facade class use onurozdoganCloudflareImageApiFacadesCloudflareImageApi; remove this line or import use onurozdoganCloudflareImageApiCloudflareImageApi;

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search