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