Laravel Gigapay mengirim undangan ke karyawan

use Mazimez\Gigapay\Employee;

$employee = Employee::findById('1'); //getting employee by it's id
$employee->resend(); //resend invite to the employee
Asif Patel