Added Account report, renamed Product to Service List

This commit is contained in:
Deon George
2023-05-09 16:31:44 +09:00
parent f3ecc12494
commit b3539e6c7e
5 changed files with 126 additions and 10 deletions

View File

@@ -6,8 +6,13 @@ use App\Http\Controllers\Controller;
class ReportController extends Controller
{
public function products()
public function accounts()
{
return view('a/product/report');
return view('account/report');
}
public function services()
{
return view('service/report');
}
}