Когда база данных это лишнее, но фреймворк обязательно 😁
1 2 3 4 5 6 7 8 9 10 |
/** * @Route("/", name="index") */ public function index(){ $articles = ["Why people are dumb dumb", "How to find an article name", "What to do when you have no idea"]; return $this->render('article/index.html.twig', [ 'title' => 'Our articles', 'articles' => $articles ]); } |