I am retrieving list of all employees:
$data = $xero->load(\XeroPHP\Models\Accounting\Employee::class)->execute();
How can I retrieve all leaves for this employee?
vendor/calcinai/xero-php/src/XeroPHP/Models/PayrollUK/Employee/Leave.php
Is there a way to retrieve more data about employee, e.g. email address? I can only access the user ID + First Name + Last Name.
I am retrieving list of all employees:
$data = $xero->load(\XeroPHP\Models\Accounting\Employee::class)->execute();How can I retrieve all leaves for this employee?
vendor/calcinai/xero-php/src/XeroPHP/Models/PayrollUK/Employee/Leave.phpIs there a way to retrieve more data about employee, e.g. email address? I can only access the user ID + First Name + Last Name.