Files
Horux_back/app/Http/Controllers/ManagerOTPController.php
consultoria-as 61320b44d8 Initial commit: Horux Backend API
- API REST para gestion de facturas electronicas mexicanas (CFDI)
- Laravel 9 con autenticacion OAuth 2.0 (Passport)
- Integracion con Syntage, Clerk y Facturama
- 30 modelos Eloquent, 39 controladores
- Documentacion completa en /docs

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 07:44:29 +00:00

86 lines
1.7 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\ManagerOTP;
use Illuminate\Http\Request;
class ManagerOTPController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\ManagerOTP $managerOTP
* @return \Illuminate\Http\Response
*/
public function show(ManagerOTP $managerOTP)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\ManagerOTP $managerOTP
* @return \Illuminate\Http\Response
*/
public function edit(ManagerOTP $managerOTP)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Models\ManagerOTP $managerOTP
* @return \Illuminate\Http\Response
*/
public function update(Request $request, ManagerOTP $managerOTP)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\ManagerOTP $managerOTP
* @return \Illuminate\Http\Response
*/
public function destroy(ManagerOTP $managerOTP)
{
//
}
}