領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
301B

  1. <?php
  2. namespace App\Models;
  3. use App\Models\Feature\ReceiptIssuingOrderFeature;
  4. class ReceiptIssuingHTParkingCustomOrder extends AppModel
  5. {
  6. use ReceiptIssuingOrderFeature;
  7. public function getModelName(): string
  8. {
  9. return "領収証発行依頼(HT駐車場カスタム)";
  10. }
  11. }