領収証発行サービス
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
367B

  1. <?php
  2. namespace App\Http\Controllers\Web\Custom\HelloTechno;
  3. use App\Codes\Custom;
  4. use App\Http\Controllers\Web\WebController;
  5. abstract class HelloTechnoController extends WebController
  6. {
  7. public function __construct()
  8. {
  9. parent::__construct();
  10. $this->middleware('auth:sanctum');
  11. $this->customAllow = [Custom::HELLO_TECHNO];
  12. }
  13. }