Files
project/app/Http/Controllers/TaxrateController.php

33 lines
586 B
PHP

<?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]);
}
}