21 lines
348 B
PHP
21 lines
348 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Consistent Details on Products
|
||
|
*/
|
||
|
namespace App\Traits;
|
||
|
|
||
|
use App\Models\Invoice;
|
||
|
|
||
|
trait ProductDetails
|
||
|
{
|
||
|
/**
|
||
|
* Return a human friendly name for the billing interval
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getBillingIntervalStringAttribute(): string
|
||
|
{
|
||
|
return Invoice::billing_name(self::getBillingIntervalAttribute());
|
||
|
}
|
||
|
}
|