Giter VIP home page Giter VIP logo

Comments (4)

matriphe avatar matriphe commented on May 27, 2024

Hello there.

Have you load the facade from the source? Please make sure you've added this line in the config/app.php:

Imageupload' => Matriphe\Imageupload\ImageuploadFacade::class,

In the source, you should use the facade instead of the library.

use Imageupload;
...
Imageupload::upload();

from laravel-imageupload.

syedarifiqbal avatar syedarifiqbal commented on May 27, 2024

But i notice in document there is instruction to no need to add facade for 5.5. and i am in 5.6. do i still need this to add in config/app.php

from laravel-imageupload.

matriphe avatar matriphe commented on May 27, 2024

In Laravel 5.5 or above, yes you don't need to add anything in the config/app.php, the package will auto register the service provider and the facade, but you still should load the facade manually in the source.

use Imageupload;

Instead of

use Matriphe\Imageupload\Imageupload

If you don't want to use facade, just create the object, and use the regular method.

use Matriphe\Imageupload\Imageupload;

$imageupload = new Imageupload;
$imageupload->upload()

from laravel-imageupload.

syedarifiqbal avatar syedarifiqbal commented on May 27, 2024

Okay it works. Thank you.

the problem was that i use

use Matriphe\Imageupload\Imageupload

i replace with

use Matriphe\Imageupload\Imageupload

and All good to go.

from laravel-imageupload.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.