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