Add placeholder customer vehicle sub getter #799

This commit is contained in:
Ramon Gutierrez 2024-05-10 14:42:58 +08:00
parent 627b3da748
commit ab64161afb

View file

@ -306,4 +306,10 @@ class CustomerVehicle
return !empty($result) ? $result[0] : null;
}
public function getLatestActiveSubscription()
{
// TODO: get latest active sub using relationship to be built
return null;
}
}