23 lines
496 B
PHP
23 lines
496 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Traits;
|
||
|
|
||
|
use App\Models\Common\Contact;
|
||
|
|
||
|
trait Contacts
|
||
|
{
|
||
|
public function getCustomerTypes($return = 'array')
|
||
|
{
|
||
|
$types = (string) setting('contact.type.customer', 'customer');
|
||
|
|
||
|
return ($return == 'array') ? explode(',', $types) : $types;
|
||
|
}
|
||
|
|
||
|
public function getVendorTypes($return = 'array')
|
||
|
{
|
||
|
$types = (string) setting('contact.type.vendor', 'vendor');
|
||
|
|
||
|
return ($return == 'array') ? explode(',', $types) : $types;
|
||
|
}
|
||
|
}
|