Skip to content

Instantly share code, notes, and snippets.

@elishaukpong
Last active January 2, 2023 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elishaukpong/fb2c56e8b9b5ecd8025746694dddd4d0 to your computer and use it in GitHub Desktop.
Save elishaukpong/fb2c56e8b9b5ecd8025746694dddd4d0 to your computer and use it in GitHub Desktop.
Compliment Facade
<?php
namespace App\Facades;
use \Illuminate\Support\Facades\Facade;
class Compliment extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor(): string
{
return "compliment";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment