11 lines
171 B
PHP
Raw Normal View History

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