I have a file that calculates something, lets say tax. Tax.php, this is inside some folder, lets say /MyCalculations/Taxes/Tax.php.
Now I want this file to be accessible inside my controller, How do I access this file, or how do I access those calculations inside this file?
Sample code of Tax.php:
<?php namespace MyCalculations/Taxes;
class Taxes extends Enginge {
//some calculations here
}
?>
I'm using laravel. Thanks