44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use App\Repository\AccountingRepository;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
class HomeController extends AbstractController
|
|
{
|
|
#[Route('/', name: 'app_home')]
|
|
public function home(Request $request, AccountingRepository $accountingRepository): Response
|
|
{
|
|
$company = $request->getSession()->get('company');
|
|
$accountings = $accountingRepository->findBy(['company' => $company, 'category' => 'actif'], ['num01' => 'ASC', 'num02' => 'ASC']);
|
|
|
|
return $this->render('home/home.html.twig', [
|
|
'usemenu' => true,
|
|
'usesidebar' => false,
|
|
'accountings' => $accountings,
|
|
]);
|
|
}
|
|
|
|
#[Route('/admin', name: 'app_admin')]
|
|
public function admin(): Response
|
|
{
|
|
return $this->render('home/home.html.twig', [
|
|
'usemenu' => true,
|
|
'usesidebar' => true,
|
|
]);
|
|
}
|
|
|
|
#[Route('/user/nocompany', name: 'app_user_nocompany')]
|
|
public function nocompany(): Response
|
|
{
|
|
return $this->render('home/nocompany.html.twig', [
|
|
'usemenu' => true,
|
|
'usesidebar' => false,
|
|
]);
|
|
}
|
|
}
|