11 lines
161 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
<?php
namespace App\View\Components\Form\Group;
2023-03-18 16:57:35 +03:00
use App\View\Components\Form\Group\Contact;
2022-06-01 10:15:55 +03:00
class Customer extends Contact
{
public $type = 'customer';
}