Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 5, 2020 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/28c7a60d6cd4a1d29a2762b25bd43972 to your computer and use it in GitHub Desktop.
Save parzibyte/28c7a60d6cd4a1d29a2762b25bd43972 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use App\Nivel;
use Illuminate\Http\Request;
class NivelesController 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\Nivel $nivel
* @return \Illuminate\Http\Response
*/
public function show(Nivel $nivel)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Nivel $nivel
* @return \Illuminate\Http\Response
*/
public function edit(Nivel $nivel)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Nivel $nivel
* @return \Illuminate\Http\Response
*/
public function update(Request $request, Nivel $nivel)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Nivel $nivel
* @return \Illuminate\Http\Response
*/
public function destroy(Nivel $nivel)
{
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment