16 lines
254 B
PHP
16 lines
254 B
PHP
<?php
|
|
|
|
namespace App\Interfaces;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
|
|
interface LabelInterface
|
|
{
|
|
/**
|
|
* Get the label associated with the contact.
|
|
*
|
|
* @return BelongsToMany
|
|
*/
|
|
public function labels();
|
|
}
|