add admin panel #20

Merged
csimonis merged 12 commits from feature/admin-panel into main 2025-02-09 14:59:31 +00:00
Showing only changes of commit 7994c7d264 - Show all commits

View File

@ -41,6 +41,7 @@ class CustomerCrudController extends AbstractCrudController
->allowDelete() ->allowDelete()
->setEntryType(TicketType::class) ->setEntryType(TicketType::class)
->setFormTypeOptions(['by_reference' => false]) ->setFormTypeOptions(['by_reference' => false])
->setTemplatePath('admin/customer_tickets.html.twig')
->hideOnIndex(); ->hideOnIndex();
} }