Build everything to deal with tax rates.

This commit is contained in:
2024-12-11 11:52:14 +01:00
parent 64e11864d2
commit 13c23a076a
11 changed files with 468 additions and 13 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace App\Http\Controllers;
use App\Models\Taxrate;
class TaxrateController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view('taxrate.index');
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
return view('taxrate.create');
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Taxrate $taxrate)
{
return view('taxrate.edit', ['taxrate' => $taxrate]);
}
}