I am very new to Laravel and currently working on a project build on Laravel 5. i want to integrate Aurigma ImageUploaderFlash.class.php but cannot seem to put it in the right location.
I put all files in app\Libraries\imageuploader and in my controller I set
use ImageUploaderFlash;
But when I call to render the CSS in the public function edit() using
ImageUploaderFlash::renderCssRules();
I get an error
Class 'app\Libraries\imageuploader\ImageUploaderFlash' not found
So it knows where to look for it, but still cannot find it :\
What am I doing wrong here?
Rename
ImageUploaderFlash.class.php
toImageUploaderFlash.php
, remove the class thing. Anyway it is an autoloading problem. Read more about that.