領収証発行サービス
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.

18 lines
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. }