<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class InvoiceListController extends AbstractController{ #[Route('/invoice-list', name: 'app_invoice_list')] public function index(): Response { return $this->render('invoice_list/index.html.twig', [ 'controller_name' => 'InvoiceListController', ]); }}