arcos-backend/stubs/controller.api.stub
2025-06-01 12:32:11 -06:00

60 lines
890 B
Plaintext

<?php namespace {{ namespace }};
/**
* @copyright (c) 2025 Notsoweb Software (https://notsoweb.com) - All Rights Reserved
*/
use {{ rootNamespace }}Http\Controllers\Controller;
use Illuminate\Http\Request;
use Notsoweb\ApiResponse\Enums\ApiResponse;
/**
* Descripción
*
* @author Moisés Cortés C. <moises.cortes@notsoweb.com>
*
* @version 1.0.0
*/
class {{ class }} extends Controller
{
/**
* Listar
*/
public function index()
{
//
}
/**
* Almacenar
*/
public function store(Request $request)
{
//
}
/**
* Mostrar
*/
public function show(string $id)
{
//
}
/**
* Actualizar
*/
public function update(Request $request, string $id)
{
//
}
/**
* Eliminar
*/
public function destroy(string $id)
{
//
}
}