Generazione delle basi per le relazioni della base degli affitti

This commit is contained in:
2025-10-03 11:41:07 +02:00
committed by Flavio Barachino
parent 1eb5a2e7f4
commit 6568f844d7
13 changed files with 405 additions and 8 deletions

View File

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