initial commit of full repository

This commit is contained in:
2022-02-22 09:55:28 +01:00
commit 4e5523d95c
217 changed files with 69149 additions and 0 deletions

22
public/css/web.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\MovimentiController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('admin');
});
Route::get('test', [MovimentiController::class,'newMovimentiForm'])->name('test');
Route::post('test',[MovimentiController::class,'insMovimenti']);