Files
2020-02-24 12:28:10 +01:00

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();
}