Build everything to deal with tax rates.
This commit is contained in:
32
app/Http/Controllers/TaxrateController.php
Normal file
32
app/Http/Controllers/TaxrateController.php
Normal 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]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user