itemListView('brands', [ 'name' => 'asc', ]); } #[Route('/new', name: 'brand_new', methods: ['GET', 'POST'])] public function new(Request $request): Response { return $this->itemCreate($request, 'brand'); } #[Route('/{id}', name: 'brand_show', methods: ['GET'])] public function show(Brand $brand): Response { return $this->itemView($brand, 'brand'); } #[Route('/{id}/edit', name: 'brand_edit', methods: ['GET', 'POST'])] public function edit(Request $request, Brand $brand): Response { return $this->itemUpdate($request, $brand, 'brand'); } #[Route('/{id}', name: 'brand_delete', methods: ['POST'])] public function delete(Request $request, Brand $brand): Response { return $this->deleteCSRF($request, $brand); } }