More tweaks to the controllers, more breadcrumbs

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2025-02-19 03:29:31 +00:00
parent 989082d719
commit 3954ff20b4
13 changed files with 92 additions and 111 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ class SuppliersController extends Controller
public function edit(Supplier $supplier) : View | RedirectResponse
{
$this->authorize('update', Supplier::class);
return view('suppliers/edit');
return view('suppliers/edit')->with('item', $supplier);
}
/**