I want to develop a Calculator for the Calculation of Tax CodeCalculate. Please Suggest to me any library or resource if available. I found 2 libraries but it's not perfect.
@Sinnbeck first of all laravel base package not working after following their command line.
and another is not working when I use their example code at
index.php
use CodiceFiscale\Calculator;
use CodiceFiscale\Subject;
$subject = new Subject(
array(
"name" => "Mario",
"surname" => "Rossi",
"birthDate" => "1985-12-10",
"gender" => "M",
"belfioreCode" => "A562"
)
);
$calculator = new Calculator($subject);
$codiceFiscale = $calculator->calculate();
echo $codiceFiscale; //"RSSMRA85T10A562S"