added orm

This commit is contained in:
2021-05-30 17:34:33 +02:00
parent 7f1aea6c8a
commit 914f19c043
15 changed files with 2626 additions and 160 deletions

@ -0,0 +1,18 @@
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class BlogController extends AbstractController
{
#[Route('/', name: 'blog')]
public function index(): Response
{
return $this->render('blog/index.html.twig', [
'controller_name' => 'BlogController',
]);
}
}

0
src/Entity/.gitignore vendored Normal file

0
src/Repository/.gitignore vendored Normal file