src/Controller/HistoryController.php line 14

  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. use Symfony\Component\Security\Http\Attribute\IsGranted;
  7. #[IsGranted('ROLE_USER')]
  8. class HistoryController extends AbstractController
  9. {
  10.     #[Route('/history'name'app_history')]
  11.     public function index(): Response
  12.     {
  13.         $billingHistories $this->getUser()->getBillingHistories();
  14.         return $this->render('history/index.html.twig', [
  15.             'billingHistories' => $billingHistories
  16.         ]);
  17.     }
  18. }