Sounds like a name spacing issue. The ImagesHelper class should be in the namespace of App\Helpers and when you use it you should call the fully qualified class name \App\Helpers\ImagesHelper::f_image(); or you should have use App\Helpers\ImagesHelper; at the top of the class you are using it in.
Hello and thanks for your feedback. I found the solution - I created an alias of the helper class in the app.php's alias section and it did work.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community