Copy and paste
Dec 19, 2023
3
Level 1
How to import OOP PHP (7.3) Classes to Laravel
I have OOP PHP (7.3) Classes which performs mathematical and statistical calculations reports the results in tables. What is the best way to import this class to Laravel?
Level 1
Creating helper and moving native PHP classes in this customHelper.php file solved my problem.
Step 1: create app/Helpers/CustomHelper.php
Step 2: Put your native class in this custom helper file
Step 3: Call this class in your blade file @php use App\Helpers\CustomFunctions; @endphp
Step 4: {[ CustomFunctions::Functionxxxx () }}
Please or to participate in this conversation.