領収証発行サービス
選択できるのは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. }