ninecompta/src/Controller/HomeController.php

44 lines
1.3 KiB
PHP
Raw Normal View History

2024-11-18 17:07:22 +01:00
<?php
namespace App\Controller;
2024-12-24 17:29:37 +01:00
use App\Repository\AccountingRepository;
2024-11-18 17:07:22 +01:00
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
2024-12-24 17:29:37 +01:00
use Symfony\Component\HttpFoundation\Request;
2024-11-18 17:07:22 +01:00
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class HomeController extends AbstractController
{
#[Route('/', name: 'app_home')]
2024-12-24 17:29:37 +01:00
public function home(Request $request, AccountingRepository $accountingRepository): Response
2024-11-18 17:07:22 +01:00
{
2024-12-24 17:29:37 +01:00
$company = $request->getSession()->get('company');
$accountings = $accountingRepository->findBy(['company' => $company, 'category' => 'actif'], ['num01' => 'ASC', 'num02' => 'ASC']);
2024-11-23 16:06:38 +01:00
return $this->render('home/home.html.twig', [
2024-11-22 08:47:33 +01:00
'usemenu' => true,
2024-11-23 16:06:38 +01:00
'usesidebar' => false,
2024-12-24 17:29:37 +01:00
'accountings' => $accountings,
2024-11-26 20:42:13 +01:00
]);
2024-11-18 17:07:22 +01:00
}
2024-11-23 16:06:38 +01:00
#[Route('/admin', name: 'app_admin')]
public function admin(): Response
{
return $this->render('home/home.html.twig', [
'usemenu' => true,
'usesidebar' => true,
2024-11-26 20:42:13 +01:00
]);
}
2024-12-24 17:29:37 +01:00
#[Route('/user/nocompany', name: 'app_user_nocompany')]
public function nocompany(): Response
{
return $this->render('home/nocompany.html.twig', [
'usemenu' => true,
'usesidebar' => false,
]);
}
2024-11-18 17:07:22 +01:00
}