repuve-backend-v1/stubs/controller.stub
2025-06-01 12:32:11 -06:00

74 lines
1021 B
Plaintext

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