75 lines
2.5 KiB
PHP
75 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Controller;
|
|
use App\Entity\Clients;
|
|
use App\Form\ClientsType;
|
|
use App\Repository\ClientsRepository;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
#[Route('/clients')]
|
|
final class ClientsController extends AbstractController
|
|
{
|
|
|
|
#[Route(name: 'app_clients_index', methods: ['GET'])]
|
|
public function index(ClientsRepository $clientsRepository): Response
|
|
{
|
|
return $this->render('clients/index.html.twig', [
|
|
'clients' => $clientsRepository->findAll(),
|
|
]);
|
|
}
|
|
|
|
#[Route('/new', name: 'app_clients_new', methods: ['GET', 'POST'])]
|
|
public function new(Request $request, EntityManagerInterface $entityManager): Response
|
|
{
|
|
$client = new Clients();
|
|
$form = $this->createForm(ClientsType::class, $client);
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
|
$entityManager->persist($client);
|
|
$entityManager->flush();
|
|
|
|
return $this->redirectToRoute('app_clients_index', [], Response::HTTP_SEE_OTHER);
|
|
}
|
|
|
|
return $this->render('clients/new.html.twig', [
|
|
'client' => $client,
|
|
'form' => $form,
|
|
]);
|
|
}
|
|
|
|
|
|
#[Route('/{id}/edit', name: 'app_clients_edit', methods: ['GET', 'POST'])]
|
|
public function edit(Request $request, Clients $client, EntityManagerInterface $entityManager): Response
|
|
{
|
|
$form = $this->createForm(ClientsType::class, $client);
|
|
$form->handleRequest($request);
|
|
|
|
if ($form->isSubmitted() && $form->isValid()) {
|
|
$entityManager->flush();
|
|
|
|
return $this->redirectToRoute('app_clients_index', [], Response::HTTP_SEE_OTHER);
|
|
}
|
|
|
|
return $this->render('clients/edit.html.twig', [
|
|
'client' => $client,
|
|
'form' => $form,
|
|
]);
|
|
}
|
|
|
|
#[Route('/{id}', name: 'app_clients_delete', methods: ['POST'])]
|
|
public function delete(Request $request, Clients $client, EntityManagerInterface $entityManager, int $id, ): Response
|
|
{
|
|
if ($this->isCsrfTokenValid('delete'.$client->getId(), $request->getPayload()->getString('_token'))) {
|
|
$entityManager->remove($client);
|
|
$entityManager->flush();
|
|
}
|
|
|
|
return $this->redirectToRoute('app_clients_index', [], Response::HTTP_SEE_OTHER);
|
|
}
|
|
}
|