src/Controller/InvoiceCreateController.php line 12
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class InvoiceCreateController extends AbstractController{#[Route('/invoice-create', name: 'app_invoice_create')]public function index(): Response{return $this->render('invoice_create/index.html.twig', ['controller_name' => 'InvoiceCreateController',]);}}