mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
f118f3bfda
* Show custom messages * Fix getSetting key * Add custom messages support with variable parsing
14 lines
234 B
PHP
14 lines
234 B
PHP
<?php
|
|
|
|
namespace App\Utils\ClientPortal\CustomMessage;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
class ClientPortalFacade extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'customMessage';
|
|
}
|
|
}
|