Work on products, first completed broadband

This commit is contained in:
Deon George
2021-12-24 12:14:01 +11:00
parent 8f5293662e
commit 1e9f15b40f
62 changed files with 2139 additions and 894 deletions

View File

@@ -170,7 +170,7 @@ class AdminController extends Controller
*/
public function supplier()
{
return view('a.supplier');
return view('a.supplier.find');
}
/**
@@ -223,7 +223,7 @@ class AdminController extends Controller
if (! $o->exists && $request->name)
$o = Supplier::where('name',$request->name)->with(['details'])->firstOrNew();
return view('a.supplierdetails')
return view('a.supplier.details')
->with('o',$o);
}