11 lines
167 B
PHP
11 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\View\Components\Form\Group;
|
||
|
|
||
|
use App\Abstracts\View\Components\Form\Group\Contact;
|
||
|
|
||
|
class Vendor extends Contact
|
||
|
{
|
||
|
public $type = 'vendor';
|
||
|
}
|