領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
202B

  1. <?php
  2. namespace App\Services\Slack;
  3. use Illuminate\Support\Facades\Facade;
  4. class SlackFacade extends Facade
  5. {
  6. protected static function getFacadeAccessor()
  7. {
  8. return 'slack';
  9. }
  10. }