領収証発行サービス
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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