render('partials/recent-activities.html.twig'); } #[Route(path: '/timesheet/add/{id}', name: 'favorites_timesheets_add', methods: ['GET'])] #[Security("is_granted('view_own_timesheet')")] public function add(Timesheet $timesheet, FavoriteRecordService $favoriteRecordService): Response { $favoriteRecordService->addFavorite($timesheet); return $this->render('partials/recent-activities.html.twig'); } #[Route(path: '/timesheet/remove/{id}', name: 'favorites_timesheets_remove', methods: ['GET'])] #[Security("is_granted('view_own_timesheet')")] public function remove(Timesheet $timesheet, FavoriteRecordService $favoriteRecordService): Response { $favoriteRecordService->removeFavorite($timesheet); return $this->render('partials/recent-activities.html.twig'); } }